[java-identity-provider COMMIT] /trunk/idp-saml-impl/src/main/java/net/shibboleth/idp/saml/session/impl/AddLogoutRequ...
noreply at shibboleth.net
noreply at shibboleth.net
Wed Nov 4 21:17:19 EST 2015
Author: scantor
Date: Wed Nov 4 21:17:19 2015
New Revision: 7941
URL: http://svn.shibboleth.net/view/java-identity-provider?rev=7941&view=rev
Log:
IDP-224 - Correct for a Sanutario encryption change, pending investigation.
Modified:
trunk/idp-saml-impl/src/main/java/net/shibboleth/idp/saml/session/impl/AddLogoutRequest.java
Modified: trunk/idp-saml-impl/src/main/java/net/shibboleth/idp/saml/session/impl/AddLogoutRequest.java
URL: http://svn.shibboleth.net/view/java-identity-provider/trunk/idp-saml-impl/src/main/java/net/shibboleth/idp/saml/session/impl/AddLogoutRequest.java?rev=7941&r1=7940&r2=7941&view=diff
==============================================================================
--- trunk/idp-saml-impl/src/main/java/net/shibboleth/idp/saml/session/impl/AddLogoutRequest.java (original)
+++ trunk/idp-saml-impl/src/main/java/net/shibboleth/idp/saml/session/impl/AddLogoutRequest.java Wed Nov 4 21:17:19 2015
@@ -236,7 +236,7 @@
object.setVersion(SAMLVersion.VERSION_20);
try {
- final NameID nameId = XMLObjectSupport.cloneXMLObject(saml2Session.getNameID());
+ final NameID nameId = XMLObjectSupport.cloneXMLObject(saml2Session.getNameID(), true);
object.setNameID(nameId);
} catch (final MarshallingException|UnmarshallingException e) {
log.error("{} Error cloning NameID for use in LogoutRequest for {}", getLogPrefix(),
More information about the commits
mailing list