X-Git-Url: http://www.project-moonshot.org/gitweb/?p=shibboleth%2Fcpp-opensaml.git;a=blobdiff_plain;f=saml%2Fsaml2%2Fbinding%2Fimpl%2FSAML2ArtifactEncoder.cpp;h=7480aec6d6f36104f2e5cd876010a91e74f205e3;hp=797b58d74e9f5be39e4dbc742607a4d441a48900;hb=11cd3b15c71ee22f2818d810a17c213123e8c248;hpb=db648eb8d96bd4414060b4a7a59da5a78749d98b diff --git a/saml/saml2/binding/impl/SAML2ArtifactEncoder.cpp b/saml/saml2/binding/impl/SAML2ArtifactEncoder.cpp index 797b58d..7480aec 100644 --- a/saml/saml2/binding/impl/SAML2ArtifactEncoder.cpp +++ b/saml/saml2/binding/impl/SAML2ArtifactEncoder.cpp @@ -49,7 +49,7 @@ namespace opensaml { class SAML_DLLLOCAL SAML2ArtifactEncoder : public MessageEncoder { public: - SAML2ArtifactEncoder(const DOMElement* e); + SAML2ArtifactEncoder(const DOMElement* e, const XMLCh* ns); virtual ~SAML2ArtifactEncoder() {} long encode( @@ -69,9 +69,9 @@ namespace opensaml { string m_template; }; - MessageEncoder* SAML_DLLLOCAL SAML2ArtifactEncoderFactory(const DOMElement* const & e) + MessageEncoder* SAML_DLLLOCAL SAML2ArtifactEncoderFactory(const pair& p) { - return new SAML2ArtifactEncoder(e); + return new SAML2ArtifactEncoder(p.first, p.second); } }; @@ -79,13 +79,13 @@ namespace opensaml { static const XMLCh postArtifact[] = UNICODE_LITERAL_12(p,o,s,t,A,r,t,i,f,a,c,t); }; -SAML2ArtifactEncoder::SAML2ArtifactEncoder(const DOMElement* e) : m_post(false) +SAML2ArtifactEncoder::SAML2ArtifactEncoder(const DOMElement* e, const XMLCh* ns) : m_post(false) { if (e) { - const XMLCh* flag = e->getAttribute(postArtifact); + const XMLCh* flag = e->getAttributeNS(ns, postArtifact); m_post = (flag && (*flag==chLatin_t || *flag==chDigit_1)); if (m_post) { - auto_ptr_char t(e->getAttribute(_template)); + auto_ptr_char t(e->getAttributeNS(ns, _template)); if (t.get() && *t.get()) m_template = t.get(); }