Created
May 31, 2013 19:40
-
-
Save dcvezzani/5687459 to your computer and use it in GitHub Desktop.
Sample web.xml file for a Apache CXF-enabled client that will be establishing an encrypted connection (SSL via HTTPS) with a server, also powered by Apache CXF.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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>UCPath-WS</display-name> | |
<welcome-file-list> | |
<welcome-file>index.html</welcome-file> | |
<welcome-file>index.htm</welcome-file> | |
<welcome-file>index.jsp</welcome-file> | |
<welcome-file>default.html</welcome-file> | |
<welcome-file>default.htm</welcome-file> | |
<welcome-file>default.jsp</welcome-file> | |
</welcome-file-list> | |
<servlet> | |
<description>Apache CXF Endpoint</description> | |
<display-name>cxf</display-name> | |
<servlet-name>cxf</servlet-name> | |
<servlet-class>org.apache.cxf.transport.servlet.CXFServlet</servlet-class> | |
<load-on-startup>1</load-on-startup> | |
</servlet> | |
<servlet-mapping> | |
<servlet-name>cxf</servlet-name> | |
<url-pattern>/IDMServices/*</url-pattern> | |
</servlet-mapping> | |
<session-config> | |
<session-timeout>60</session-timeout> | |
</session-config> | |
<context-param> | |
<param-name>contextConfigLocation</param-name> | |
<param-value>WEB-INF/cxf-beans.xml</param-value> | |
</context-param> | |
<listener> | |
<listener-class>org.springframework.web.context.ContextLoaderListener</listener-class> | |
</listener> | |
<security-constraint> | |
<web-resource-collection> | |
<web-resource-name>IDM Web Services</web-resource-name> | |
<url-pattern>/*</url-pattern> | |
</web-resource-collection> | |
<auth-constraint> | |
<role-name>secureconn</role-name> | |
</auth-constraint> | |
</security-constraint> | |
<login-config> | |
<auth-method>CLIENT-CERT</auth-method> | |
<realm-name>IDM Web Services</realm-name> | |
</login-config> | |
<security-role> | |
<role-name>secureconn</role-name> | |
</security-role> | |
</web-app> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment