blob: 196889680d362858444a4d8f19c78d125f68f2f6 [file] [log] [blame]
<?xml version="1.0" encoding="UTF-8"?>
<web-app id="WebApp_ID" version="2.4" 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">
<filter>
<filter-name>OpenCDOSessionInViewFilter</filter-name>
<filter-class>org.eclipse.opencert.storage.cdo.web.OpenCDOSessionInViewFilter</filter-class>
</filter>
<filter-mapping>
<filter-name>OpenCDOSessionInViewFilter</filter-name>
<url-pattern>/*</url-pattern>
</filter-mapping>
<!-- filter>
<filter-name>springSecurityFilterChain</filter-name>
<filter-class>org.springframework.web.filter.DelegatingFilterProxy</filter-class>
</filter>
<filter-mapping>
<filter-name>springSecurityFilterChain</filter-name>
<url-pattern>/*</url-pattern>
</filter-mapping>
<servlet-mapping>
<servlet-name>jsp</servlet-name>
<url-pattern>/login</url-pattern>
</servlet-mapping -->
<servlet>
<servlet-name>opencert</servlet-name>
<servlet-class>com.vaadin.server.VaadinServlet</servlet-class>
<init-param>
<param-name>UI</param-name>
<param-value>org.eclipse.opencert.webapp.reports.webapp.OpencertApplication</param-value>
</init-param>
</servlet>
<servlet-mapping>
<servlet-name>opencert</servlet-name>
<url-pattern>/*</url-pattern>
</servlet-mapping>
<servlet>
<servlet-name>docxExportServlet</servlet-name>
<servlet-class>org.eclipse.opencert.webapp.reports.export.docx.DocxExportServlet</servlet-class>
</servlet>
<servlet-mapping>
<servlet-name>docxExportServlet</servlet-name>
<url-pattern>/docxExport</url-pattern>
</servlet-mapping>
<context-param>
<param-name>log4jConfigLocation</param-name>
<param-value>/WEB-INF/log4j.xml</param-value>
</context-param>
<listener>
<listener-class>org.springframework.web.context.ContextLoaderListener
</listener-class>
</listener>
<listener>
<listener-class>org.springframework.web.util.Log4jConfigListener</listener-class>
</listener>
<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>WEB-INF/applicationContext.xml</param-value> <!-- ,WEB-INF/securityContext.xml,WEB-INF/access.xml -->
</context-param>
</web-app>