validatorMain.jsp revision e8721886dbfd32e88cc7077cbee4b6bb1b44b443
4fd606d1f5abe38e1f42c38de1d2e895166bd0f4vboxsync<%--
4fd606d1f5abe38e1f42c38de1d2e895166bd0f4vboxsync DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
4fd606d1f5abe38e1f42c38de1d2e895166bd0f4vboxsync
4fd606d1f5abe38e1f42c38de1d2e895166bd0f4vboxsync Copyright (c) 2008 Sun Microsystems Inc. All Rights Reserved
4fd606d1f5abe38e1f42c38de1d2e895166bd0f4vboxsync
4fd606d1f5abe38e1f42c38de1d2e895166bd0f4vboxsync The contents of this file are subject to the terms
4fd606d1f5abe38e1f42c38de1d2e895166bd0f4vboxsync of the Common Development and Distribution License
4fd606d1f5abe38e1f42c38de1d2e895166bd0f4vboxsync (the License). You may not use this file except in
4fd606d1f5abe38e1f42c38de1d2e895166bd0f4vboxsync compliance with the License.
4fd606d1f5abe38e1f42c38de1d2e895166bd0f4vboxsync
4fd606d1f5abe38e1f42c38de1d2e895166bd0f4vboxsync You can obtain a copy of the License at
4fd606d1f5abe38e1f42c38de1d2e895166bd0f4vboxsync https://opensso.dev.java.net/public/CDDLv1.0.html or
4fd606d1f5abe38e1f42c38de1d2e895166bd0f4vboxsync opensso/legal/CDDLv1.0.txt
4fd606d1f5abe38e1f42c38de1d2e895166bd0f4vboxsync See the License for the specific language governing
4fd606d1f5abe38e1f42c38de1d2e895166bd0f4vboxsync permission and limitations under the License.
4fd606d1f5abe38e1f42c38de1d2e895166bd0f4vboxsync
4fd606d1f5abe38e1f42c38de1d2e895166bd0f4vboxsync When distributing Covered Code, include this CDDL
4fd606d1f5abe38e1f42c38de1d2e895166bd0f4vboxsync Header Notice in each file and include the License file
4fd606d1f5abe38e1f42c38de1d2e895166bd0f4vboxsync at opensso/legal/CDDLv1.0.txt.
4fd606d1f5abe38e1f42c38de1d2e895166bd0f4vboxsync If applicable, add the following below the CDDL Header,
4fd606d1f5abe38e1f42c38de1d2e895166bd0f4vboxsync with the fields enclosed by brackets [] replaced by
4fd606d1f5abe38e1f42c38de1d2e895166bd0f4vboxsync your own identifying information:
4fd606d1f5abe38e1f42c38de1d2e895166bd0f4vboxsync "Portions Copyrighted [year] [name of copyright owner]"
4fd606d1f5abe38e1f42c38de1d2e895166bd0f4vboxsync
4fd606d1f5abe38e1f42c38de1d2e895166bd0f4vboxsync $Id: validatorMain.jsp,v 1.6 2009/01/09 17:42:57 veiming Exp $
4fd606d1f5abe38e1f42c38de1d2e895166bd0f4vboxsync
4fd606d1f5abe38e1f42c38de1d2e895166bd0f4vboxsync--%>
4fd606d1f5abe38e1f42c38de1d2e895166bd0f4vboxsync
4fd606d1f5abe38e1f42c38de1d2e895166bd0f4vboxsync<%@ page import="com.sun.identity.common.SystemConfigurationUtil" %>
4fd606d1f5abe38e1f42c38de1d2e895166bd0f4vboxsync<%@ page import="com.sun.identity.shared.Constants" %>
4fd606d1f5abe38e1f42c38de1d2e895166bd0f4vboxsync<%@ page import="com.sun.identity.workflow.ValidateSAML2" %>
4fd606d1f5abe38e1f42c38de1d2e895166bd0f4vboxsync<%@ page import="java.net.URLEncoder" %>
4fd606d1f5abe38e1f42c38de1d2e895166bd0f4vboxsync<%@ page contentType="text/html; charset=utf-8" language="java" %>
4fd606d1f5abe38e1f42c38de1d2e895166bd0f4vboxsync
4fd606d1f5abe38e1f42c38de1d2e895166bd0f4vboxsync<%
4fd606d1f5abe38e1f42c38de1d2e895166bd0f4vboxsync request.setCharacterEncoding("UTF-8");
4fd606d1f5abe38e1f42c38de1d2e895166bd0f4vboxsync String deployuri = SystemConfigurationUtil.getProperty(
4fd606d1f5abe38e1f42c38de1d2e895166bd0f4vboxsync Constants.AM_SERVICES_DEPLOYMENT_DESCRIPTOR);
4fd606d1f5abe38e1f42c38de1d2e895166bd0f4vboxsync
4fd606d1f5abe38e1f42c38de1d2e895166bd0f4vboxsync String locale = request.getParameter("locale");
4fd606d1f5abe38e1f42c38de1d2e895166bd0f4vboxsync String pageTitle = ValidateSAML2.getMessage(
4fd606d1f5abe38e1f42c38de1d2e895166bd0f4vboxsync "federation.connectivity.test", locale);
4fd606d1f5abe38e1f42c38de1d2e895166bd0f4vboxsync String cancelButton = ValidateSAML2.getMessage("button.cancel", locale);
4fd606d1f5abe38e1f42c38de1d2e895166bd0f4vboxsync%>
4fd606d1f5abe38e1f42c38de1d2e895166bd0f4vboxsync<html>
4fd606d1f5abe38e1f42c38de1d2e895166bd0f4vboxsync<head>
4fd606d1f5abe38e1f42c38de1d2e895166bd0f4vboxsync<link rel="stylesheet" type="text/css" href="<%= deployuri %>/com_sun_web_ui/css/css_ns6up.css" />
4fd606d1f5abe38e1f42c38de1d2e895166bd0f4vboxsync<link rel="shortcut icon" href="<%= deployuri %>/com_sun_web_ui/images/favicon/favicon.ico" type="image/x-icon"></link>
4fd606d1f5abe38e1f42c38de1d2e895166bd0f4vboxsync<link rel="stylesheet" type="text/css" href="<%= deployuri %>/console/css/openam.css" />
4fd606d1f5abe38e1f42c38de1d2e895166bd0f4vboxsync
4fd606d1f5abe38e1f42c38de1d2e895166bd0f4vboxsync</head>
4fd606d1f5abe38e1f42c38de1d2e895166bd0f4vboxsync<body class="DefBdy" onload="onLoad()">
4fd606d1f5abe38e1f42c38de1d2e895166bd0f4vboxsync<iframe name="hidden1" style="display:none"></iframe>
4fd606d1f5abe38e1f42c38de1d2e895166bd0f4vboxsync<iframe name="hidden2" style="display:none"></iframe>
<table width="100%" border="0" cellpadding="0" cellspacing="0" class="MstTblBot" title="">
<tbody>
<tr>
<td class="MstTdTtl" width="99%" bgcolor="#637583" valign="bottom">
<div class="MstDivTtl"><br /><img name="Home.mhCommon.ProdName" src="<%= deployuri %>/console/images/PrimaryProductName.png" alt="" /></div></td><td class="MstTdLogo" width="1%" bgcolor="#637583"><img src="<%= deployuri %>/com_sun_web_ui/images/other/javalogo.gif" alt="Java(TM) Logo" border="0" height="55" width="31" /></td></tr></tbody></table>
<table border="0" width="100%" cellpadding="0" cellspacing="0">
<tr valign="bottom">
<td nowrap="nowrap" valign="bottom" bgcolor="#4e606e">
<div><img src="<%= deployuri %>/com_sun_web_ui/images/other/dot.gif" alt="" border="0" height="10" width="1" /></div>
</td>
</tr>
</table>
<table border="0" width="100%" cellpadding="0" cellspacing="0">
<tr><td bgcolor="#677784"><img name="Home.mhCommon.EndorserLogo" src="/opensso/com_sun_web_ui/images/masthead/masthead-sunname.gif" alt="Sun(TM) Microsystems, Inc." align="right" border="0" height="10" width="108" /></td></tr></tbody></table>
<table border="0" width="100%" cellpadding="0" cellspacing="0">
<tr valign="bottom">
<td nowrap="nowrap" valign="bottom">
<div class="TtlTxtDiv">
<h1 class="TaskTitle"><%= pageTitle %></h1>
</div>
</td>
<td align="right" nowrap="nowrap" valign="bottom">
<!-- div class="TtlBtnDiv"> <input name="btnCancel" type="submit" class="Btn1" value="<%= cancelButton %>" onmouseover="javascript: this.className='Btn1Hov'" onmouseout="javascript: this.className='Btn1'" onblur="javascript: this.className='Btn1'" onfocus="javascript: this.className='Btn1Hov'" onClick="cancelOp();return false;"/ -->
</div>
</td>
</tr>
</table>
<div><img src="<%= deployuri %>/com_sun_web_ui/images/other/dot.gif" alt="" border="0" height="10" width="1" /></div>
<iframe src ="" name="controller" width="100%" height="20%" frameborder=0></iframe>
<div><img src="<%= deployuri %>/com_sun_web_ui/images/other/dot.gif" alt="" border="0" height="10" width="1" /></div>
<div style="text-align:center">
<iframe src ="" width="95%" height="50%" name="worker" frameborder=1></iframe>
</center>
<div><img src="<%= deployuri %>/com_sun_web_ui/images/other/dot.gif" alt="" border="0" height="10" width="1" /></div>
<form name="validatorForm" target="controller" method="POST"
action="validator.jsp">
<input type="hidden" name="realm" />
<input type="hidden" name="locale" />
<input type="hidden" name="cot" />
<input type="hidden" name="idp" />
<input type="hidden" name="sp" />
</form>
<iframe src ="validatorFooter.jsp?m=" width="100%" height="40" name="footer" frameborder=0></iframe>
<script language="Javascript">
var accLinkTimer;
var sloTimer;
var ssoTimer;
var accTermTimer;
function cancelOp() {
logout();
top.location = "<%= deployuri %>";
}
function logout() {
frames['controller'].logout();
}
function errorOccured() {
frames['worker'].location = 'validatorStatus.jsp';
logout();
}
function onLoad() {
<%
String realm = request.getParameter("realm");
String cot = request.getParameter("cot");
String idp = request.getParameter("idp");
String sp = request.getParameter("sp");
out.println("frames['worker'].location = 'validateWait.jsp?locale=" +
locale + "&m=" + URLEncoder.encode("validate.initializing") + "';");
%>
startTest();
}
function gotoHiddenFrame1(url) {
frames['hidden1'].location = url;
}
function gotoHiddenFrame2(url) {
frames['hidden2'].location = url;
}
function startTest() {
var f = document.forms['validatorForm'];
f.elements['realm'].value = '<%= realm %>';
f.elements['locale'].value = '<%= locale %>';
f.elements['cot'].value = '<%= cot %>';
f.elements['idp'].value = '<%= idp %>';
f.elements['sp'].value = '<%= sp %>';
f.submit();
}
function gotoURL(url) {
frames['worker'].location = url;
}
function showFooter(msg) {
frames['footer'].location = 'validatorFooter.jsp?locale=<%= locale %>&m=' + msg;
}
function authIdpPassed() {
frames['controller'].authIdpPassed();
}
function authIdpFailed() {
frames['controller'].authIdpFailed();
}
function authSpPassed() {
frames['controller'].authSpPassed();
}
function authSpFailed() {
frames['controller'].authSpFailed();
}
function accLinkPassed() {
clearTimeout(accLinkTimer);
frames['controller'].accLinkPassed();
frames['worker'].location = "validatorStatus.jsp";
}
function accLinkFailed() {
frames['controller'].accLinkFailed();
frames['worker'].location = "validatorStatus.jsp";
}
function trackAccountLink() {
accLinkTimer = setTimeout("accLinkFailed()", 5000);
}
function singleLogoutPassed() {
clearTimeout(sloTimer);
frames['controller'].sloPassed();
}
function sloFailed() {
frames['controller'].sloFailed();
frames['worker'].location = "validatorStatus.jsp";
}
function trackSingleLogout() {
sloTimer = setTimeout("sloFailed()", 5000);
}
function singleLoginPassed() {
clearTimeout(ssoTimer);
frames['worker'].location = "validatorStatus.jsp";
frames['controller'].ssoPassed();
}
function ssoFailed() {
frames['controller'].ssoFailed();
}
function trackSingleLogin() {
ssoTimer = setTimeout("ssoFailed()", 30000);
}
function accTermPassed() {
clearTimeout(accTermTimer);
frames['controller'].accTermPassed();
logout();
frames['controller'].getReport();
}
function accTermFailed() {
frames['controller'].accTermFailed();
frames['worker'].location = "validatorStatus.jsp";
}
function trackAccountTermination() {
accTermTimer = setTimeout("accTermFailed()", 5000);
}
function authIdp() {
frames['controller'].authIdp();
}
function authSp() {
frames['controller'].authSp();
}
function singleLogin() {
frames['controller'].singleLogin();
}
</script>
</body>
</html>