blob: b5bd7d0196636a0496e762a7f08a476a2b16b276 [file] [log] [blame]
<?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.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">
<display-name>OpenCMIS Server</display-name>
<welcome-file-list>
<welcome-file>index.jsp</welcome-file>
<welcome-file>index.html</welcome-file>
</welcome-file-list>
<listener>
<listener-class>org.apache.chemistry.opencmis.server.impl.CmisRepositoryContextListener</listener-class>
</listener>
<listener>
<listener-class>com.sun.xml.ws.transport.http.servlet.WSServletContextListener</listener-class>
</listener>
<!--
A servlet filter that logs all requests in files. Useful for monitoring and debugging.
Use it with care! It can generate a huge amount of files and will slow down performance
significantly.
-->
<!-- - ->
<filter>
<filter-name>LoggingFilter</filter-name>
<filter-class>org.apache.chemistry.opencmis.server.support.filter.LoggingFilter</filter-class>
<init-param>
<param-name>LogDir</param-name>
<param-value></param-value>
</init-param>
<init-param>
<param-name>PrettyPrint</param-name>
<param-value>true</param-value>
</init-param>
<init-param>
<param-name>LogHeader</param-name>
<param-value>true</param-value>
</init-param>
<init-param>
<param-name>Indent</param-name>
<param-value>4</param-value>
</init-param>
</filter>
<filter-mapping>
<filter-name>LoggingFilter</filter-name>
<servlet-name>cmisatom10</servlet-name>
</filter-mapping>
<filter-mapping>
<filter-name>LoggingFilter</filter-name>
<servlet-name>cmisatom11</servlet-name>
</filter-mapping>
<filter-mapping>
<filter-name>LoggingFilter</filter-name>
<servlet-name>cmisws10</servlet-name>
</filter-mapping>
<filter-mapping>
<filter-name>LoggingFilter</filter-name>
<servlet-name>cmisws11</servlet-name>
</filter-mapping>
<filter-mapping>
<filter-name>LoggingFilter</filter-name>
<servlet-name>cmisbrowser</servlet-name>
</filter-mapping>
<!- - -->
<!--
Uncomment the following filter if the OpenCMIS server runs behind a proxy server or a load balancer.
The value of the 'trustedProxies' parameter is a regular expression. It must match the IP address of the proxy or load balancer.
-->
<!--
<filter>
<filter-name>ProxyFilter</filter-name>
<filter-class>org.apache.chemistry.opencmis.server.filter.ProxyFilter</filter-class>
<init-param>
<param-name>trustedProxies</param-name>
<param-value>10\.\d{1,3}\.\d{1,3}\.\d{1,3}|192\.168\.\d{1,3}\.\d{1,3}|169\.254\.\d{1,3}\.\d{1,3}|127\.\d{1,3}\.\d{1,3}\.\d{1,3}</param-value>
</init-param>
</filter>
<filter-mapping>
<filter-name>ProxyFilter</filter-name>
<servlet-name>cmisatom10</servlet-name>
</filter-mapping>
<filter-mapping>
<filter-name>ProxyFilter</filter-name>
<servlet-name>cmisatom11</servlet-name>
</filter-mapping>
<filter-mapping>
<filter-name>ProxyFilter</filter-name>
<servlet-name>cmisbrowser</servlet-name>
</filter-mapping>
-->
<!--
Uncomment the following filter to enable CORS support for the browser binding.
See http://software.dzhuvinov.com/cors-filter.html for details.
Put the CORS libraries into the WEB-INF/lib directory or uncomment the CORS depenedency in the pom.xml.
-->
<!--
<filter>
<filter-name>CORS</filter-name>
<filter-class>com.thetransactioncompany.cors.CORSFilter</filter-class>
<init-param>
<param-name>cors.allowGenericHttpRequests</param-name>
<param-value>true</param-value>
</init-param>
<init-param>
<param-name>cors.allowOrigin</param-name>
<param-value>*</param-value>
</init-param>
<init-param>
<param-name>cors.allowSubdomains</param-name>
<param-value>false</param-value>
</init-param>
<init-param>
<param-name>cors.supportedMethods</param-name>
<param-value>GET, POST</param-value>
</init-param>
<init-param>
<param-name>cors.supportedHeaders</param-name>
<param-value>*</param-value>
</init-param>
<init-param>
<param-name>cors.exposedHeaders</param-name>
<param-value></param-value>
</init-param>
<init-param>
<param-name>cors.supportsCredentials</param-name>
<param-value>true</param-value>
</init-param>
<init-param>
<param-name>cors.maxAge</param-name>
<param-value>3600</param-value>
</init-param>
<init-param>
<param-name>cors.tagRequests</param-name>
<param-value>false</param-value>
</init-param>
</filter>
<filter-mapping>
<filter-name>CORS</filter-name>
<servlet-name>cmisbrowser</servlet-name>
</filter-mapping>
-->
<servlet>
<servlet-name>cmisws10</servlet-name>
<servlet-class>org.apache.chemistry.opencmis.server.impl.webservices.CmisWebServicesServlet</servlet-class>
<init-param>
<param-name>cmisVersion</param-name>
<param-value>1.0</param-value>
</init-param>
<load-on-startup>1</load-on-startup>
</servlet>
<servlet>
<servlet-name>cmisws11</servlet-name>
<servlet-class>org.apache.chemistry.opencmis.server.impl.webservices.CmisWebServicesServlet</servlet-class>
<init-param>
<param-name>cmisVersion</param-name>
<param-value>1.1</param-value>
</init-param>
<load-on-startup>1</load-on-startup>
</servlet>
<servlet>
<servlet-name>cmisatom10</servlet-name>
<servlet-class>org.apache.chemistry.opencmis.server.impl.atompub.CmisAtomPubServlet</servlet-class>
<init-param>
<param-name>callContextHandler</param-name>
<param-value>org.apache.chemistry.opencmis.server.shared.BasicAuthCallContextHandler</param-value>
</init-param>
<init-param>
<param-name>cmisVersion</param-name>
<param-value>1.0</param-value>
</init-param>
<load-on-startup>2</load-on-startup>
</servlet>
<servlet>
<servlet-name>cmisatom11</servlet-name>
<servlet-class>org.apache.chemistry.opencmis.server.impl.atompub.CmisAtomPubServlet</servlet-class>
<init-param>
<param-name>callContextHandler</param-name>
<param-value>org.apache.chemistry.opencmis.server.shared.BasicAuthCallContextHandler</param-value>
</init-param>
<init-param>
<param-name>cmisVersion</param-name>
<param-value>1.1</param-value>
</init-param>
<load-on-startup>2</load-on-startup>
</servlet>
<servlet>
<servlet-name>cmisbrowser</servlet-name>
<servlet-class>org.apache.chemistry.opencmis.server.impl.browser.CmisBrowserBindingServlet</servlet-class>
<init-param>
<param-name>callContextHandler</param-name>
<param-value>org.apache.chemistry.opencmis.server.impl.browser.token.TokenCallContextHandler</param-value>
</init-param>
<load-on-startup>2</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>cmisws10</servlet-name>
<url-pattern>/services/*</url-pattern>
</servlet-mapping>
<servlet-mapping>
<servlet-name>cmisws11</servlet-name>
<url-pattern>/services11/*</url-pattern>
</servlet-mapping>
<servlet-mapping>
<servlet-name>cmisatom10</servlet-name>
<url-pattern>/atom/*</url-pattern>
</servlet-mapping>
<servlet-mapping>
<servlet-name>cmisatom11</servlet-name>
<url-pattern>/atom11/*</url-pattern>
</servlet-mapping>
<servlet-mapping>
<servlet-name>cmisbrowser</servlet-name>
<url-pattern>/browser/*</url-pattern>
</servlet-mapping>
</web-app>