validateWait.jsp revision e8721886dbfd32e88cc7077cbee4b6bb1b44b443
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
0N/A (the License). You may not use this file except in
0N/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
0N/A See the License for the specific language governing
0N/A permission and limitations under the License.
0N/A
0N/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:
0N/A "Portions Copyrighted [year] [name of copyright owner]"
0N/A
0N/A $Id: validateWait.jsp,v 1.5 2009/01/05 23:23:24 veiming Exp $
0N/A
0N/A--%>
0N/A<%--
0N/A Portions Copyrighted 2012 ForgeRock AS
0N/A--%>
58N/A
0N/A<%@ page import="com.sun.identity.common.SystemConfigurationUtil" %>
0N/A<%@ page import="com.sun.identity.shared.Constants" %>
0N/A<%@ page import="com.sun.identity.workflow.ValidateSAML2" %>
0N/A<%@ page import="org.owasp.esapi.ESAPI" %>
0N/A<%@ page contentType="text/html; charset=utf-8" language="java" %>
0N/A
0N/A<%
0N/A String deployuri = SystemConfigurationUtil.getProperty(
58N/A Constants.AM_SERVICES_DEPLOYMENT_DESCRIPTOR);
99N/A String msg = request.getParameter("m");
99N/A String locale = request.getParameter("locale");
99N/A String message = ValidateSAML2.getMessage(msg, locale);
0N/A%>
0N/A<html>
0N/A<head>
0N/A<link rel="stylesheet" type="text/css" href="<%= deployuri %>/com_sun_web_ui/css/css_ns6up.css" />
0N/A<link rel="shortcut icon" href="<%= deployuri %>/com_sun_web_ui/images/favicon/favicon.ico" type="image/x-icon"></link>
0N/A<link rel="stylesheet" type="text/css" href="<%= deployuri %>/console/css/openam.css" />
0N/A
0N/A<script language="JavaScript">
0N/A</script>
0N/A
0N/A</head>
0N/A<body class="DefBdy">
58N/A
58N/A<div><img src="<%= deployuri %>/com_sun_web_ui/images/other/dot.gif" alt="" border="0" height="120" width="1" /></div>
58N/A<center><img src="<%= deployuri %>/console/images/processing.gif" alt="" border="0" height="66" width="66" />
58N/A<p>&nbsp;</p>
98N/A<span class="ProgressText" id="message"><%= ESAPI.encoder().encodeForHTML(message) %></span>
98N/A</center>
98N/A
98N/A
98N/A
98N/A</body>
98N/A</html>
98N/A