126N/A<%--
126N/A DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
126N/A
126N/A Copyright (c) 2006 Sun Microsystems Inc. All Rights Reserved
851N/A
851N/A The contents of this file are subject to the terms
126N/A of the Common Development and Distribution License
126N/A (the License). You may not use this file except in
126N/A compliance with the License.
126N/A
126N/A You can obtain a copy of the License at
126N/A https://opensso.dev.java.net/public/CDDLv1.0.html or
126N/A opensso/legal/CDDLv1.0.txt
126N/A See the License for the specific language governing
126N/A permission and limitations under the License.
126N/A
126N/A When distributing Covered Code, include this CDDL
126N/A Header Notice in each file and include the License file
126N/A at opensso/legal/CDDLv1.0.txt.
126N/A If applicable, add the following below the CDDL Header,
126N/A with the fields enclosed by brackets [] replaced by
126N/A your own identifying information:
126N/A "Portions Copyrighted [year] [name of copyright owner]"
126N/A
126N/A $Id: ReferralProxy.jsp,v 1.2 2008/06/25 05:44:44 qcheng Exp $
126N/A
126N/A--%>
126N/A<%--
126N/A Portions Copyrighted 2012 ForgeRock Inc
126N/A Portions Copyrighted 2012 Open Source Solution Technology Corporation
126N/A--%>
126N/A
851N/A<%@ page info="ReferralProxy" language="java" %>
126N/A<%@taglib uri="/WEB-INF/cc.tld" prefix="cc" %>
126N/A<%@taglib uri="/WEB-INF/jato.tld" prefix="jato" %>
126N/A<jato:useViewBean
493N/A className="com.sun.identity.console.policy.ReferralProxyViewBean"
126N/A fireChildDisplayEvents="true" >
126N/A
851N/A<cc:i18nbundle baseName="amConsole" id="amConsole"
126N/A locale="<%=((com.sun.identity.console.base.AMViewBeanBase)viewBean).getUserLocale()%>"/>
126N/A
126N/A<html>
126N/A<script language="javascript">
126N/A function forward() {
126N/A var frm = document.forms[0];
126N/A var jatoFrm = document.forms[1];
126N/A frm.elements['rflType'].value =
126N/A jatoFrm.elements['ReferralProxy.rflType'].value;
126N/A frm.elements['rflName'].value =
493N/A jatoFrm.elements['ReferralProxy.rflName'].value;
126N/A frm.elements['locDN'].value =
126N/A jatoFrm.elements['ReferralProxy.locDN'].value;
493N/A frm.elements['cachedID'].value =
126N/A jatoFrm.elements['ReferralProxy.cachedID'].value;
126N/A frm.elements['tfOp'].value =
493N/A jatoFrm.elements['ReferralProxy.tfOp'].value;
126N/A frm.elements['jato.pageSession'].value =
126N/A jatoFrm.elements['jato.pageSession'].value;
493N/A frm.submit();
126N/A }
126N/A</script>
126N/A
126N/A<body onload="forward();">
126N/A
<form action="<jato:text name="tfURL" />" method="post">
<input type="hidden" name="jato.pageSession">
<input type="hidden" name="rflType">
<input type="hidden" name="rflName">
<input type="hidden" name="locDN">
<input type="hidden" name="cachedID">
<input type="hidden" name="tfOp">
</form>
<jato:form name="ReferralProxy" method="post">
<jato:hidden name="rflType" />
<jato:hidden name="rflName" />
<jato:hidden name="locDN" />
<jato:hidden name="cachedID" />
<jato:hidden name="tfOp" />
</jato:form>
</body>
</html>
</jato:useViewBean>