web.xml revision 87e1cbcd02820f55e1816ee4efe9e9127be22a11
0N/A<?xml version="1.0" encoding="UTF-8"?>
0N/A
0N/A<!--
0N/A DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
0N/A
0N/A Copyright (c) 2008 Sun Microsystems Inc. All Rights Reserved
0N/A
0N/A The contents of this file are subject to the terms
0N/A of the Common Development and Distribution License
6983N/A (the License). You may not use this file except in
6983N/A compliance with the License.
0N/A
0N/A You can obtain a copy of the License at
0N/A https://opensso.dev.java.net/public/CDDLv1.0.html or
0N/A opensso/legal/CDDLv1.0.txt
6983N/A See the License for the specific language governing
6983N/A permission and limitations under the License.
6983N/A
6983N/A When distributing Covered Code, include this CDDL
0N/A Header Notice in each file and include the License file
0N/A at opensso/legal/CDDLv1.0.txt.
0N/A If applicable, add the following below the CDDL Header,
0N/A with the fields enclosed by brackets [] replaced by
0N/A your own identifying information:
3233N/A "Portions Copyrighted [year] [name of copyright owner]"
5636N/A
0N/A $Id: web.xml,v 1.5 2010/01/07 00:22:19 exu Exp $
0N/A
0N/A Portions Copyrighted 2011-2015 ForgeRock AS.
5636N/A-->
2976N/A
1920N/A<web-app version="3.0" 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_3_0.xsd">
0N/A <display-name>Fedlet Sample Application</display-name>
<distributable/>
<listener>
<listener-class>com.sun.identity.common.ShutdownServletContextListener</listener-class>
</listener>
<!-- Add one servlet entry like this per module -->
<servlet>
<servlet-name>fedletapplication</servlet-name>
<jsp-file>/fedletSampleApp.jsp</jsp-file>
</servlet>
<servlet>
<servlet-name>fedletSloInit</servlet-name>
<jsp-file>/saml2/jsp/spSingleLogoutInit.jsp</jsp-file>
</servlet>
<servlet>
<servlet-name>fedletSloSoap</servlet-name>
<servlet-class>com.sun.identity.saml2.servlet.SPSingleLogoutServiceSOAP</servlet-class>
</servlet>
<servlet>
<servlet-name>fedletlogout</servlet-name>
<jsp-file>/logout.jsp</jsp-file>
</servlet>
<servlet>
<servlet-name>fedletSloRedirect</servlet-name>
<jsp-file>/saml2/jsp/spSingleLogoutRedirect.jsp</jsp-file>
</servlet>
<servlet>
<servlet-name>fedletSloPOST</servlet-name>
<jsp-file>/saml2/jsp/spSingleLogoutPOST.jsp</jsp-file>
</servlet>
<!-- Add one servlet mapping entry like this per module -->
<servlet-mapping>
<servlet-name>fedletapplication</servlet-name>
<url-pattern>/fedletapplication</url-pattern>
</servlet-mapping>
<servlet-mapping>
<servlet-name>fedletSloInit</servlet-name>
<url-pattern>/fedletSloInit</url-pattern>
</servlet-mapping>
<servlet-mapping>
<servlet-name>fedletSloSoap</servlet-name>
<url-pattern>/fedletSloSoap</url-pattern>
</servlet-mapping>
<servlet-mapping>
<servlet-name>fedletlogout</servlet-name>
<url-pattern>/logout</url-pattern>
</servlet-mapping>
<servlet-mapping>
<servlet-name>fedletSloPOST</servlet-name>
<url-pattern>/fedletSloPOST</url-pattern>
</servlet-mapping>
<servlet-mapping>
<servlet-name>fedletSloRedirect</servlet-name>
<url-pattern>/fedletSloRedirect</url-pattern>
</servlet-mapping>
<welcome-file-list>
<welcome-file>index.jsp</welcome-file>
<welcome-file>index.html</welcome-file>
</welcome-file-list>
</web-app>