You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
misp/mirror/web.xml

24 lines
797 B

<?xml version="1.0" encoding="ISO-8859-1"?>
<web-app xmlns="http://java.sun.com/xml/ns/j2ee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd"
version="2.4">
<display-name>Mirror</display-name>
<description>
This is a simple web application with a source code organization
based on the recommendations of the Application Developer's Guide.
</description>
<servlet>
<servlet-name>Mirror</servlet-name>
<servlet-class>com.olexyn.mirror.Mirror</servlet-class>
</servlet>
<servlet-mapping>
<servlet-name>Mirror</servlet-name>
<url-pattern>/core</url-pattern>
</servlet-mapping>
</web-app>