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