X-Git-Url: http://www.project-moonshot.org/gitweb/?p=shibboleth%2Fcpp-opensaml.git;a=blobdiff_plain;f=saml%2Fsaml2%2Fbinding%2Fimpl%2FSAML2SOAPClient.cpp;h=a78b8b209ca9b621f62a472f5b1c7886f8ca2f5f;hp=a9c78f285f8fcd440c94eaca3a6bf30ba41b6187;hb=1462057b3b9ae7e165d34d988e30b14c213672ca;hpb=f1208cd2f514700244816377443c4951dc22c848 diff --git a/saml/saml2/binding/impl/SAML2SOAPClient.cpp b/saml/saml2/binding/impl/SAML2SOAPClient.cpp index a9c78f2..a78b8b2 100644 --- a/saml/saml2/binding/impl/SAML2SOAPClient.cpp +++ b/saml/saml2/binding/impl/SAML2SOAPClient.cpp @@ -119,11 +119,11 @@ StatusResponseType* SAML2SOAPClient::receiveSAML() return nullptr; } -bool SAML2SOAPClient::handleError(const Status& status) +bool SAML2SOAPClient::handleError(const saml2p::Status& status) { auto_ptr_char code((status.getStatusCode() ? status.getStatusCode()->getValue() : nullptr)); auto_ptr_char str((status.getStatusMessage() ? status.getStatusMessage()->getMessage() : nullptr)); - Category::getInstance(SAML_LOGCAT".SOAPClient").error( + Category::getInstance(SAML_LOGCAT ".SOAPClient").error( "SOAP client detected a SAML error: (%s) (%s)", (code.get() ? code.get() : "no code"), (str.get() ? str.get() : "no message")