hs.hsadmin/hsarweb/WebContent/WEB-INF/web.xml

87 lines
3.0 KiB
XML
Raw Normal View History

2010-12-15 14:15:52 +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">
<display-name>HSAdmin</display-name>
2010-09-22 18:39:16 +02:00
<context-param>
<param-name>serverName</param-name>
2011-03-31 21:08:34 +02:00
<param-value>http://agnes.ostwall195.de:8080</param-value>
2010-09-22 18:39:16 +02:00
</context-param>
2010-10-05 21:43:30 +02:00
<context-param>
<param-name>backendURL</param-name>
2011-03-31 21:08:34 +02:00
<param-value>https://agnes.ostwall195.de:9443/hsar/backend</param-value>
2010-10-05 21:43:30 +02:00
</context-param>
<context-param>
<param-name>xmlrpcURL</param-name>
2011-03-31 21:08:34 +02:00
<param-value>https://agnes.ostwall195.de:9443/hsar/xmlrpc/hsadmin</param-value>
2010-10-05 21:43:30 +02:00
</context-param>
2010-12-15 14:15:52 +01:00
<context-param>
<description>Vaadin production mode</description>
<param-name>productionMode</param-name>
<param-value>false</param-value>
</context-param>
2010-09-21 20:14:58 +02:00
<filter>
<filter-name>CAS Authentication Filter</filter-name>
<filter-class>org.jasig.cas.client.authentication.AuthenticationFilter</filter-class>
<init-param>
<param-name>casServerLoginUrl</param-name>
2011-03-31 21:08:34 +02:00
<param-value>https://agnes.ostwall195.de:9443/cas/login</param-value>
2010-09-21 20:14:58 +02:00
</init-param>
<init-param>
<param-name>service</param-name>
<param-value>https://agnes.ostwall195.de:8443/hsarweb</param-value>
2010-09-21 20:14:58 +02:00
</init-param>
</filter>
<filter>
<filter-name>CAS Validation Filter</filter-name>
<filter-class>org.jasig.cas.client.validation.Cas20ProxyReceivingTicketValidationFilter</filter-class>
<init-param>
<param-name>casServerUrlPrefix</param-name>
2011-03-31 21:08:34 +02:00
<param-value>https://agnes.ostwall195.de:9443/cas</param-value>
2010-09-21 20:14:58 +02:00
</init-param>
<init-param>
2010-09-22 18:39:16 +02:00
<param-name>proxyReceptorUrl</param-name>
<param-value>/proxyCallback</param-value>
</init-param>
<init-param>
<param-name>proxyCallbackUrl</param-name>
<param-value>https://agnes.ostwall195.de:8443/hsarweb/proxyCallback</param-value>
2010-09-22 18:39:16 +02:00
</init-param>
2010-09-21 20:14:58 +02:00
<init-param>
<param-name>service</param-name>
<param-value>https://agnes.ostwall195.de:8443/hsarweb</param-value>
2010-09-21 20:14:58 +02:00
</init-param>
</filter>
<filter-mapping>
2010-09-22 18:39:16 +02:00
<filter-name>CAS Validation Filter</filter-name>
2010-09-21 20:14:58 +02:00
<url-pattern>/*</url-pattern>
</filter-mapping>
2010-09-22 18:39:16 +02:00
2010-09-21 20:14:58 +02:00
<filter-mapping>
2010-09-22 18:39:16 +02:00
<filter-name>CAS Authentication Filter</filter-name>
2010-09-21 20:14:58 +02:00
<url-pattern>/*</url-pattern>
</filter-mapping>
2010-12-15 14:15:52 +01:00
2010-09-21 20:14:58 +02:00
<servlet>
2010-12-15 14:15:52 +01:00
<servlet-name>HSAdmin Web</servlet-name>
<servlet-class>com.vaadin.terminal.gwt.server.ApplicationServlet</servlet-class>
<init-param>
<description>Vaadin application class to start</description>
<param-name>application</param-name>
<param-value>de.hsadmin.web.MainApplication</param-value>
2010-12-15 14:15:52 +01:00
</init-param>
2010-09-21 20:14:58 +02:00
</servlet>
<servlet-mapping>
2010-12-15 14:15:52 +01:00
<servlet-name>HSAdmin Web</servlet-name>
<url-pattern>/*</url-pattern>
2010-09-21 20:14:58 +02:00
</servlet-mapping>
<welcome-file-list>
2010-12-15 14:15:52 +01:00
<welcome-file>index.html</welcome-file>
2010-09-21 20:14:58 +02:00
<welcome-file>index.jsp</welcome-file>
</welcome-file-list>
2010-12-15 14:15:52 +01:00
</web-app>