home *** CD-ROM | disk | FTP | other *** search
/ PC Extra 07 & 08 / pca1507.iso / extra / cursus / java.exe / eclipse.project / WEB-INF / web.xml
Encoding:
Extensible Markup Language  |  2003-05-20  |  479 b   |  15 lines

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!DOCTYPE web-app    PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.2//EN"
  3.     "http://java.sun.com/j2ee/dtds/web-app_2_2.dtd">
  4.  
  5. <web-app>
  6.     <session-config>
  7.         <session-timeout>30</session-timeout>
  8.     </session-config>
  9.     <welcome-file-list>
  10.         <welcome-file>index.jsp</welcome-file>
  11.         <welcome-file>index.html</welcome-file>
  12.         <welcome-file>index.htm</welcome-file>
  13.     </welcome-file-list>
  14. </web-app>
  15.