X-Git-Url: http://www.project-moonshot.org/gitweb/?a=blobdiff_plain;f=saml%2Fsaml1%2Fbinding%2FSAML1SOAPClient.h;h=de2e9b792083c8259079a381a9d84a2df0290f24;hb=b1614d3c1fc1f4230ab2a123f43994127c25462c;hp=783c7c22f67a6fd7fe0f12f5d7941a0c903d2e72;hpb=730ef8006d0bdf6a6d111e416b8828c02f58fc32;p=shibboleth%2Fcpp-opensaml.git diff --git a/saml/saml1/binding/SAML1SOAPClient.h b/saml/saml1/binding/SAML1SOAPClient.h index 783c7c2..de2e9b7 100644 --- a/saml/saml1/binding/SAML1SOAPClient.h +++ b/saml/saml1/binding/SAML1SOAPClient.h @@ -17,7 +17,7 @@ /** * @file saml/saml1/binding/SAML1SOAPClient.h * - * Specialized SOAPClient for SAML 1.x SOAP binding. + * Client class for SAML 1.x SOAP binding. */ #ifndef __saml1_soap11client_h__ @@ -26,6 +26,7 @@ #include namespace opensaml { + namespace saml1p { class SAML_API Request; @@ -33,32 +34,34 @@ namespace opensaml { class SAML_API Status; /** - * Specialized SOAPClient for SAML 1.x SOAP binding. + * Client class for SAML 1.x SOAP binding. */ - class SAML_API SAML1SOAPClient : public opensaml::SOAPClient + class SAML_API SAML1SOAPClient { public: /** - * Creates a SOAP client instance with a particular SecurityPolicy. + * Constructor * - * @param policy reference to SecurityPolicy to apply - * @param validating controls schema validation + * @param soaper reference to SOAPClient object to use for call */ - SAML1SOAPClient(SecurityPolicy& policy, bool validating=false) : opensaml::SOAPClient(policy, validating) {} + SAML1SOAPClient(SOAPClient& soaper) : m_soaper(soaper), m_correlate(NULL) { + } - virtual ~SAML1SOAPClient() {} + virtual ~SAML1SOAPClient() { + XMLString::release(&m_correlate); + } /** * Specialized method for sending SAML 1.x requests. The SOAP layer will be * constructed automatically. * - *

The request will be freed by the client object if the method succeeds. + *

The request will be freed by the client object regardless of the outcome. * * @param request SAML request to send - * @param peer peer to send message to, expressed in metadata terms + * @param peer peer to send message to, expressed in metadata criteria terms * @param endpoint URL of endpoint to recieve message */ - virtual void sendSAML(Request* request, const saml2md::RoleDescriptor& peer, const char* endpoint); + virtual void sendSAML(Request* request, saml2md::MetadataCredentialCriteria& peer, const char* endpoint); /** * Specialized method for receiving SAML 1.x responses. The SOAP layer will be @@ -78,6 +81,12 @@ namespace opensaml { * @return true iff the error should be treated as a fatal error */ virtual bool handleError(const Status& status); + + /** SOAP client object */ + SOAPClient& m_soaper; + + private: + XMLCh* m_correlate; }; };