aboutsummaryrefslogtreecommitdiff
path: root/DocumentService/WebContent/WEB-INF/web.xml
diff options
context:
space:
mode:
Diffstat (limited to 'DocumentService/WebContent/WEB-INF/web.xml')
-rw-r--r--DocumentService/WebContent/WEB-INF/web.xml21
1 files changed, 21 insertions, 0 deletions
diff --git a/DocumentService/WebContent/WEB-INF/web.xml b/DocumentService/WebContent/WEB-INF/web.xml
new file mode 100644
index 000000000..30edc9598
--- /dev/null
+++ b/DocumentService/WebContent/WEB-INF/web.xml
@@ -0,0 +1,21 @@
+<?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">
+ <display-name>DocumentService</display-name>
+ <listener>
+ <listener-class>com.sun.xml.ws.transport.http.servlet.WSServletContextListener</listener-class>
+ </listener>
+ <servlet>
+ <servlet-name>DocumentService</servlet-name>
+ <servlet-class>com.sun.xml.ws.transport.http.servlet.WSServlet</servlet-class>
+ <load-on-startup>1</load-on-startup>
+ </servlet>
+ <servlet-mapping>
+ <servlet-name>DocumentService</servlet-name>
+ <url-pattern>/DocumentService</url-pattern>
+ </servlet-mapping>
+ <session-config>
+ <session-timeout>120</session-timeout>
+ </session-config>
+</web-app> \ No newline at end of file