From e665d35667efb8f78dce6601b1aca794ae7fb121 Mon Sep 17 00:00:00 2001 From: Olav Morken <olav.morken@uninett.no> Date: Mon, 7 Mar 2011 13:26:00 +0000 Subject: [PATCH] SAML2_SOAP: Log messages received and sent. git-svn-id: https://simplesamlphp.googlecode.com/svn/trunk@2757 44740490-163a-0410-bde0-09ae8108e29a --- lib/SAML2/SOAP.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/SAML2/SOAP.php b/lib/SAML2/SOAP.php index 00c46fa64..937590b5f 100644 --- a/lib/SAML2/SOAP.php +++ b/lib/SAML2/SOAP.php @@ -21,6 +21,7 @@ class SAML2_SOAP extends SAML2_Binding { $outputFromIdp .= '<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/">'; $outputFromIdp .= '<SOAP-ENV:Body>'; $xmlMessage = $message->toUnsignedXML(); + SimpleSAML_Utilities::debugMessage($xmlMessage, 'out'); $tempOutputFromIdp = $xmlMessage->ownerDocument->saveXML($xmlMessage); $outputFromIdp .= $tempOutputFromIdp; $outputFromIdp .= '</SOAP-ENV:Body>'; @@ -48,6 +49,7 @@ class SAML2_SOAP extends SAML2_Binding { $document = new DOMDocument(); $document->loadXML($postText); $xml = $document->firstChild; + SimpleSAML_Utilities::debugMessage($xml, 'in'); $results = SAML2_Utils::xpQuery($xml, '/soap-env:Envelope/soap-env:Body/*[1]'); return SAML2_Message::fromXML($results[0]); } -- GitLab