Merge pull request #113 from span/deployment-descriptor
Fix #112 deployment descriptor elements in wrong order
This commit is contained in:
commit
be0dc297e7
@ -26,19 +26,19 @@
|
|||||||
parameters, including zero.
|
parameters, including zero.
|
||||||
-->
|
-->
|
||||||
<context-param>
|
<context-param>
|
||||||
<param-name>email</param-name>
|
|
||||||
<param-value>webgoat@owasp.org</param-value>
|
|
||||||
<description>
|
<description>
|
||||||
The EMAIL address of the administrator to whom questions
|
The EMAIL address of the administrator to whom questions
|
||||||
and comments about this application should be addressed.
|
and comments about this application should be addressed.
|
||||||
</description>
|
</description>
|
||||||
|
<param-name>email</param-name>
|
||||||
|
<param-value>webgoat@owasp.org</param-value>
|
||||||
</context-param>
|
</context-param>
|
||||||
<context-param>
|
<context-param>
|
||||||
<param-name>emaillist</param-name>
|
|
||||||
<param-value>owasp-webgoat@lists.owasp.org</param-value>
|
|
||||||
<description>
|
<description>
|
||||||
The EMAIL address of the webgoat email list
|
The EMAIL address of the webgoat email list
|
||||||
</description>
|
</description>
|
||||||
|
<param-name>emaillist</param-name>
|
||||||
|
<param-value>owasp-webgoat@lists.owasp.org</param-value>
|
||||||
</context-param>
|
</context-param>
|
||||||
<!-- spring MVC -->
|
<!-- spring MVC -->
|
||||||
<context-param>
|
<context-param>
|
||||||
@ -73,23 +73,23 @@
|
|||||||
You can define any number of servlets, including zero.
|
You can define any number of servlets, including zero.
|
||||||
-->
|
-->
|
||||||
<servlet>
|
<servlet>
|
||||||
<servlet-name>AxisServlet</servlet-name>
|
|
||||||
<display-name>Apache-Axis Servlet</display-name>
|
<display-name>Apache-Axis Servlet</display-name>
|
||||||
|
<servlet-name>AxisServlet</servlet-name>
|
||||||
<servlet-class>
|
<servlet-class>
|
||||||
org.apache.axis.transport.http.AxisServlet
|
org.apache.axis.transport.http.AxisServlet
|
||||||
</servlet-class>
|
</servlet-class>
|
||||||
</servlet>
|
</servlet>
|
||||||
<servlet>
|
<servlet>
|
||||||
<servlet-name>AdminServlet</servlet-name>
|
|
||||||
<display-name>Axis Admin Servlet</display-name>
|
<display-name>Axis Admin Servlet</display-name>
|
||||||
|
<servlet-name>AdminServlet</servlet-name>
|
||||||
<servlet-class>
|
<servlet-class>
|
||||||
org.apache.axis.transport.http.AdminServlet
|
org.apache.axis.transport.http.AdminServlet
|
||||||
</servlet-class>
|
</servlet-class>
|
||||||
<load-on-startup>100</load-on-startup>
|
<load-on-startup>100</load-on-startup>
|
||||||
</servlet>
|
</servlet>
|
||||||
<servlet>
|
<servlet>
|
||||||
<servlet-name>SOAPMonitorService</servlet-name>
|
|
||||||
<display-name>SOAPMonitorService</display-name>
|
<display-name>SOAPMonitorService</display-name>
|
||||||
|
<servlet-name>SOAPMonitorService</servlet-name>
|
||||||
<servlet-class>
|
<servlet-class>
|
||||||
org.apache.axis.monitor.SOAPMonitorService
|
org.apache.axis.monitor.SOAPMonitorService
|
||||||
</servlet-class>
|
</servlet-class>
|
||||||
@ -100,7 +100,6 @@
|
|||||||
<load-on-startup>100</load-on-startup>
|
<load-on-startup>100</load-on-startup>
|
||||||
</servlet>
|
</servlet>
|
||||||
<servlet>
|
<servlet>
|
||||||
<servlet-name>WebGoat</servlet-name>
|
|
||||||
<description>
|
<description>
|
||||||
This servlet plays the "controller" role in the MVC architecture
|
This servlet plays the "controller" role in the MVC architecture
|
||||||
used in this application.
|
used in this application.
|
||||||
@ -110,13 +109,14 @@
|
|||||||
filename extension is removed). The corresponding value is the
|
filename extension is removed). The corresponding value is the
|
||||||
name of the action class that will be used to process this request.
|
name of the action class that will be used to process this request.
|
||||||
</description>
|
</description>
|
||||||
|
<servlet-name>WebGoat</servlet-name>
|
||||||
<servlet-class>org.owasp.webgoat.HammerHead</servlet-class>
|
<servlet-class>org.owasp.webgoat.HammerHead</servlet-class>
|
||||||
<init-param>
|
<init-param>
|
||||||
<param-name>email</param-name>
|
|
||||||
<param-value>WebGoat@owasp.org</param-value>
|
|
||||||
<description>The EMAIL address of the administrator to whom questions
|
<description>The EMAIL address of the administrator to whom questions
|
||||||
and comments about this application should be addressed.
|
and comments about this application should be addressed.
|
||||||
</description>
|
</description>
|
||||||
|
<param-name>email</param-name>
|
||||||
|
<param-value>WebGoat@owasp.org</param-value>
|
||||||
</init-param>
|
</init-param>
|
||||||
<init-param>
|
<init-param>
|
||||||
<param-name>debug</param-name>
|
<param-name>debug</param-name>
|
||||||
@ -172,17 +172,17 @@
|
|||||||
<load-on-startup>5</load-on-startup>
|
<load-on-startup>5</load-on-startup>
|
||||||
</servlet>
|
</servlet>
|
||||||
<servlet>
|
<servlet>
|
||||||
<servlet-name>LessonSource</servlet-name>
|
|
||||||
<description>
|
<description>
|
||||||
This servlet returns the Java source of the current lesson.
|
This servlet returns the Java source of the current lesson.
|
||||||
</description>
|
</description>
|
||||||
|
<servlet-name>LessonSource</servlet-name>
|
||||||
<servlet-class>org.owasp.webgoat.LessonSource</servlet-class>
|
<servlet-class>org.owasp.webgoat.LessonSource</servlet-class>
|
||||||
</servlet>
|
</servlet>
|
||||||
<servlet>
|
<servlet>
|
||||||
<servlet-name>Catcher</servlet-name>
|
<description>
|
||||||
<description>
|
|
||||||
This servlet catches any posts and marks the appropriate lesson property.
|
This servlet catches any posts and marks the appropriate lesson property.
|
||||||
</description>
|
</description>
|
||||||
|
<servlet-name>Catcher</servlet-name>
|
||||||
<servlet-class>org.owasp.webgoat.Catcher</servlet-class>
|
<servlet-class>org.owasp.webgoat.Catcher</servlet-class>
|
||||||
</servlet>
|
</servlet>
|
||||||
<servlet>
|
<servlet>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user