Changeset 178
- Timestamp:
- 05/30/07 14:06:51 (2 years ago)
- Files:
-
- AcmeIdp/trunk/src/java/log4j.properties (added)
- AcmeIdp/trunk/web/auth-user.jsp (added)
- AcmeIdp/trunk/web/recv-authnrequest.jsp (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
AcmeIdp/trunk/web/recv-authnrequest.jsp
r169 r178 3 3 <%@page session="true"%> 4 4 <%@include file="include.jsp"%> 5 6 5 <%@ page import="net.clareitysecurity.websso.idp.*" %> 7 6 <%@ page import="org.opensaml.saml2.core.*" %> 8 9 10 7 <% 11 H TTPPOST httpPost = new HTTPPOST();8 HttpPost httpPost = new HttpPost(); 12 9 AuthnRequest authnRequest = httpPost.decodeSAMLRequest(request); 13 10 String relayState = httpPost.getRelayState(); … … 24 21 messageXML = messageXML.replace(">", ">"); 25 22 23 // check and see if we already have a valid session for this user 24 // if so, send them on without asking for new credentials 25 String idpLoginId = (String) session.getAttribute(_credentials); 26 if (idpLoginId != null) { 27 response.sendRedirect("auth-user.jsp"); 28 return; 29 } 26 30 %> 27 31 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
