You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ws.apache.org by co...@apache.org on 2018/08/30 14:19:10 UTC

svn commit: r1839682 - /webservices/wss4j/trunk/ws-security-common/src/main/java/org/apache/wss4j/common/saml/SamlAssertionWrapper.java

Author: coheigea
Date: Thu Aug 30 14:19:10 2018
New Revision: 1839682

URL: http://svn.apache.org/viewvc?rev=1839682&view=rev
Log:
Picking up a change from Santuario

Modified:
    webservices/wss4j/trunk/ws-security-common/src/main/java/org/apache/wss4j/common/saml/SamlAssertionWrapper.java

Modified: webservices/wss4j/trunk/ws-security-common/src/main/java/org/apache/wss4j/common/saml/SamlAssertionWrapper.java
URL: http://svn.apache.org/viewvc/webservices/wss4j/trunk/ws-security-common/src/main/java/org/apache/wss4j/common/saml/SamlAssertionWrapper.java?rev=1839682&r1=1839681&r2=1839682&view=diff
==============================================================================
--- webservices/wss4j/trunk/ws-security-common/src/main/java/org/apache/wss4j/common/saml/SamlAssertionWrapper.java (original)
+++ webservices/wss4j/trunk/ws-security-common/src/main/java/org/apache/wss4j/common/saml/SamlAssertionWrapper.java Thu Aug 30 14:19:10 2018
@@ -781,7 +781,7 @@ public class SamlAssertionWrapper {
                 Element signatureValueElement =
                     XMLUtils.getNextElement(signedInfoElem.getNextSibling());
                 if (signatureValueElement != null) {
-                    String base64Input = XMLUtils.getFullTextChildrenFromElement(signatureValueElement);
+                    String base64Input = XMLUtils.getFullTextChildrenFromNode(signatureValueElement);
                     return XMLUtils.decode(base64Input);
                 }
             }