X-Git-Url: http://www.project-moonshot.org/gitweb/?p=shibboleth%2Fcpp-opensaml.git;a=blobdiff_plain;f=saml%2Fsaml2%2Fbinding%2Fimpl%2FSAML2ECPDecoder.cpp;h=8a0acee74bf648139cdb476abc4fdd5e286e4cb6;hp=d31128601cf310e9b5394a8132afb64b953dfdc4;hb=52a4b6e644370ea071381676df5fb497e8832980;hpb=c9e0e2dc2e15d2004333db7f135947db13956b5e diff --git a/saml/saml2/binding/impl/SAML2ECPDecoder.cpp b/saml/saml2/binding/impl/SAML2ECPDecoder.cpp index d311286..8a0acee 100644 --- a/saml/saml2/binding/impl/SAML2ECPDecoder.cpp +++ b/saml/saml2/binding/impl/SAML2ECPDecoder.cpp @@ -131,7 +131,7 @@ XMLObject* SAML2ECPDecoder::decode( static const XMLCh RelayState[] = UNICODE_LITERAL_10(R,e,l,a,y,S,t,a,t,e); const vector& blocks = const_cast(env->getHeader())->getUnknownXMLObjects(); vector::const_iterator h = - find_if(blocks.begin(), blocks.end(), hasQName(QName(samlconstants::SAML20ECP_NS, RelayState))); + find_if(blocks.begin(), blocks.end(), hasQName(xmltooling::QName(samlconstants::SAML20ECP_NS, RelayState))); const ElementProxy* ep = dynamic_cast(h != blocks.end() ? *h : NULL); if (ep) { auto_ptr_char rs(ep->getTextContent());