| <?xml version="1.0" encoding="UTF-8"?> |
| <!-- |
| Licensed to the Apache Software Foundation (ASF) under one |
| or more contributor license agreements. See the NOTICE file |
| distributed with this work for additional information |
| regarding copyright ownership. The ASF licenses this file |
| to you under the Apache License, Version 2.0 (the |
| "License"); you may not use this file except in compliance |
| with the License. You may obtain a copy of the License at |
| |
| http://www.apache.org/licenses/LICENSE-2.0 |
| |
| Unless required by applicable law or agreed to in writing, |
| software distributed under the License is distributed on an |
| "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY |
| KIND, either express or implied. See the License for the |
| specific language governing permissions and limitations |
| under the License. |
| --> |
| <web-app version="2.5" xmlns="http://java.sun.com/xml/ns/javaee" |
| xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| xsi:schemaLocation="http://java.sun.com/xml/ns/javaee |
| http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"> |
| <context-param> |
| <param-name>testds.port</param-name> |
| <param-value>${testds.port}</param-value> |
| </context-param> |
| <context-param> |
| <param-name>testdb.webport</param-name> |
| <param-value>${testdb.webport}</param-value> |
| </context-param> |
| <context-param> |
| <param-name>testconnectorserver.port</param-name> |
| <param-value>${testconnectorserver.port}</param-value> |
| </context-param> |
| <context-param> |
| <param-name>testconnectorserver.key</param-name> |
| <param-value>${testconnectorserver.key}</param-value> |
| </context-param> |
| <context-param> |
| <param-name>testconnectorserver.soap.bundle</param-name> |
| <param-value>org.connid.bundles.soap-${connid.soap.version}.jar</param-value> |
| </context-param> |
| <context-param> |
| <param-name>testconnectorserver.db.bundle</param-name> |
| <param-value>org.connid.bundles.db.table-${connid.db.table.version}.jar</param-value> |
| </context-param> |
| <context-param> |
| <param-name>testconnectorserver.csvdir.bundle</param-name> |
| <param-value>org.connid.bundles.csvdir-${connid.csvdir.version}.jar</param-value> |
| </context-param> |
| <context-param> |
| <param-name>testconnectorserver.ldap.bundle</param-name> |
| <param-value>org.connid.bundles.ldap-${connid.ldap.version}.jar</param-value> |
| </context-param> |
| <context-param> |
| <param-name>contextConfigLocation</param-name> |
| <param-value>classpath*:/*Context.xml</param-value> |
| </context-param> |
| <listener> |
| <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class> |
| </listener> |
| <listener> |
| <listener-class>org.apache.syncope.buildtools.ApacheDSStartStopListener</listener-class> |
| </listener> |
| <listener> |
| <listener-class>org.apache.syncope.buildtools.H2StartStopListener</listener-class> |
| </listener> |
| <listener> |
| <listener-class>org.apache.syncope.buildtools.ConnIdStartStopListener</listener-class> |
| </listener> |
| <servlet> |
| <servlet-name>ApacheDSRootDseServlet</servlet-name> |
| <servlet-class>org.apache.syncope.buildtools.ApacheDSRootDseServlet</servlet-class> |
| </servlet> |
| <servlet> |
| <servlet-name>ServiceTimeoutServlet</servlet-name> |
| <servlet-class>org.apache.syncope.buildtools.ServiceTimeoutServlet</servlet-class> |
| </servlet> |
| <servlet-mapping> |
| <servlet-name>ApacheDSRootDseServlet</servlet-name> |
| <url-pattern>/apacheDS</url-pattern> |
| </servlet-mapping> |
| <servlet-mapping> |
| <servlet-name>ServiceTimeoutServlet</servlet-name> |
| <url-pattern>/services/*</url-pattern> |
| </servlet-mapping> |
| </web-app> |