web.xml
00001 <?xml version="1.0" encoding="ISO-8859-1"?>
00002 <!DOCTYPE web-app
00003 PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.2//EN"
00004 "http://java.sun.com/j2ee/dtds/web-app_2_2.dtd">
00005
00006 <web-app>
00007
00008 <display-name>JWAA Servlet</display-name>
00009
00010 <description>
00011 This is version 1.0 of an application to support
00012 the Java Web Application Architecture (jwaa).
00013 It was written by Brad Cox (bcox@virtualschool.edu),
00014 who should be contacted for more information.
00015 </description>
00016
00017 <context-param>
00018 <param-name>webmaster</param-name>
00019 <param-value>bcox@virtualschool.edu</param-value>
00020 <description>
00021 The EMAIL address of the administrator to whom questions
00022 and comments about this application should be addressed.
00023 </description>
00024 </context-param>
00025
00026 <servlet>
00027 <servlet-name>jwaa</servlet-name>
00028 <description>JWAA Servlet</description>
00029 <servlet-class>edu.virtualschool.jwaa.dox.JwaaServlet</servlet-class>
00030 <init-param>
00031 <param-name>properties.path</param-name>
00032 <param-value>/jwaa/WEB-INF/classes</param-value>
00033 </init-param>
00034 <load-on-startup>5</load-on-startup>
00035 </servlet>
00036
00037 <servlet-mapping>
00038 <servlet-name>jwaa</servlet-name>
00039 <url-pattern>/demo
00040
00041
00042
00043
00044
00045
00046
00047
00048
00049
00050
00051
00052
00053
00054
00055
00056
00057
00058
00059
00060
00061
00062
00063
00064
00065
00066
00067
00068
00069
00070
00071
00072
00073
00074
00075
00076
00077
00078
00079
00080
00081
00082
00083
00084
00085
00086
00087