<?xml version="1.0" encoding="ISO-8859-1"?>
<!DOCTYPE web-app PUBLIC 
    "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN"
    "http://java.sun.com/dtd/web-app_2_3.dtd">

<web-app>
  <!-- Order matters in web.xml! For the elements
       used in this example, this order is required:
          welcome-file-list
          taglib
  -->
  
  <!-- If URL gives a directory but no filename, try index.jsp
       first and index.html second. If neither is found,
       the result is server specific (e.g., a directory 
       listing).  Order of elements in web.xml matters. 
       welcome-file-list needs to come after servlet but
       before error-page.
  -->
  <welcome-file-list>
    <welcome-file>index.jsp</welcome-file>
    <welcome-file>index.html</welcome-file>
  </welcome-file-list>

  <!-- Register the company-name tag library. Declare an alias
       for the TLD filename since the tag library is under
       development and thus the TLD filename might change.
       You don't want to change all the JSP files each time
       the TLD file changes. Besides, Tomcat 4.0 won't pick
       up listener declarations from TLD files unless they
       are declared this way.
  -->
  <taglib>
    <taglib-uri>
      /session-count-taglib.tld
    </taglib-uri>
    <taglib-location>
      /WEB-INF/session-count-taglib-0.9-beta.tld
    </taglib-location>
  </taglib>
</web-app>
