55 |
brianR |
1 |
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
2 |
<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" version="2.5">
|
|
|
3 |
<context-param>
|
|
|
4 |
<param-name>contextConfigLocation</param-name>
|
|
|
5 |
<param-value>WEB-INF/cxf-beans.xml</param-value>
|
|
|
6 |
</context-param>
|
|
|
7 |
<listener>
|
|
|
8 |
<listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
|
|
|
9 |
</listener>
|
|
|
10 |
<servlet>
|
|
|
11 |
<servlet-name>XServices</servlet-name>
|
|
|
12 |
<servlet-class>org.apache.cxf.transport.servlet.CXFServlet</servlet-class>
|
|
|
13 |
<load-on-startup>1</load-on-startup>
|
|
|
14 |
</servlet>
|
|
|
15 |
<servlet-mapping>
|
|
|
16 |
<servlet-name>XServices</servlet-name>
|
|
|
17 |
<url-pattern>/*</url-pattern>
|
|
|
18 |
</servlet-mapping>
|
|
|
19 |
<session-config>
|
|
|
20 |
<session-timeout>30</session-timeout>
|
|
|
21 |
</session-config>
|
|
|
22 |
<welcome-file-list>
|
|
|
23 |
<welcome-file>index.html</welcome-file>
|
|
|
24 |
</welcome-file-list>
|
|
|
25 |
</web-app>
|