2010-02-23 15:03:14 +01:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://java.sun.com/xml/ns/javaee" xmlns:web="http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" id="WebApp_ID" version="2.5">
|
2007-01-12 06:35:01 +01:00
|
|
|
|
|
|
|
<display-name>XID TESTS</display-name>
|
|
|
|
<description>
|
|
|
|
Some tests on XID.
|
|
|
|
</description>
|
|
|
|
|
|
|
|
<!-- ========================================== -->
|
|
|
|
<servlet>
|
|
|
|
<servlet-name>XidTest</servlet-name>
|
|
|
|
<servlet-class>xid.Test</servlet-class>
|
|
|
|
</servlet>
|
|
|
|
<servlet-mapping>
|
|
|
|
<servlet-name>XidTest</servlet-name>
|
|
|
|
<url-pattern>/test.xhtml</url-pattern>
|
|
|
|
</servlet-mapping>
|
|
|
|
<!-- ========================================== -->
|
|
|
|
|
|
|
|
<welcome-file-list>
|
|
|
|
<welcome-file>index.jsp</welcome-file>
|
|
|
|
<welcome-file>index.html</welcome-file>
|
|
|
|
<welcome-file>index.htm</welcome-file>
|
|
|
|
</welcome-file-list>
|
|
|
|
|
|
|
|
</web-app>
|