2011-04-20 18:59:54 +02: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" version="2.5">
|
|
|
|
<context-param>
|
|
|
|
<param-name>contextConfigLocation</param-name>
|
2011-09-19 08:54:10 +02:00
|
|
|
<param-value>/WEB-INF/cxf-beans.xml</param-value>
|
2011-04-20 18:59:54 +02:00
|
|
|
</context-param>
|
2011-12-31 14:10:52 +01:00
|
|
|
<context-param>
|
|
|
|
<param-name>quartz:config-file</param-name>
|
|
|
|
<param-value>quartz.properties</param-value>
|
|
|
|
</context-param>
|
|
|
|
<context-param>
|
|
|
|
<param-name>quartz:shutdown-on-unload</param-name>
|
|
|
|
<param-value>true</param-value>
|
|
|
|
</context-param>
|
|
|
|
<context-param>
|
|
|
|
<param-name>quartz:wait-on-shutdown</param-name>
|
|
|
|
<param-value>false</param-value>
|
|
|
|
</context-param>
|
|
|
|
<context-param>
|
|
|
|
<param-name>quartz:start-scheduler-on-load</param-name>
|
|
|
|
<param-value>true</param-value>
|
|
|
|
</context-param>
|
2011-04-20 18:59:54 +02:00
|
|
|
<listener>
|
|
|
|
<listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
|
|
|
|
</listener>
|
2011-09-19 08:54:10 +02:00
|
|
|
<listener>
|
2011-12-31 14:10:52 +01:00
|
|
|
<listener-class>
|
2011-09-19 08:54:10 +02:00
|
|
|
org.quartz.ee.servlet.QuartzInitializerListener
|
|
|
|
</listener-class>
|
2011-12-31 14:10:52 +01:00
|
|
|
</listener>
|
2011-04-20 18:59:54 +02:00
|
|
|
<servlet>
|
|
|
|
<servlet-name>XServices</servlet-name>
|
|
|
|
<servlet-class>org.apache.cxf.transport.servlet.CXFServlet</servlet-class>
|
|
|
|
<load-on-startup>1</load-on-startup>
|
|
|
|
</servlet>
|
2011-12-31 14:10:52 +01:00
|
|
|
<servlet>
|
|
|
|
<servlet-name>QuartzInitializer</servlet-name>
|
|
|
|
<servlet-class>org.quartz.ee.servlet.QuartzInitializerServlet</servlet-class>
|
|
|
|
<init-param>
|
|
|
|
<param-name>shutdown-on-unload</param-name>
|
|
|
|
<param-value>true</param-value>
|
|
|
|
</init-param>
|
|
|
|
<load-on-startup>2</load-on-startup>
|
|
|
|
</servlet>
|
2011-04-20 18:59:54 +02:00
|
|
|
<servlet-mapping>
|
|
|
|
<servlet-name>XServices</servlet-name>
|
|
|
|
<url-pattern>/*</url-pattern>
|
|
|
|
</servlet-mapping>
|
|
|
|
<session-config>
|
|
|
|
<session-timeout>30</session-timeout>
|
|
|
|
</session-config>
|
|
|
|
<welcome-file-list>
|
|
|
|
<welcome-file>index.html</welcome-file>
|
|
|
|
</welcome-file-list>
|
|
|
|
</web-app>
|