X-Git-Url: http://www.project-moonshot.org/gitweb/?a=blobdiff_plain;f=shib-target%2FArtifactMapper.cpp;h=02e1b0640c118b142815b8dea24f6483da9cdd9a;hb=cd42fc0cc9b1fe1db17bbcaaa6cd2a5efc8918e1;hp=6f3f22f546b85354091b286691a61c321d12de9b;hpb=e93cca3d0522351e1c6a5226026bc3a15422ece9;p=shibboleth%2Fsp.git diff --git a/shib-target/ArtifactMapper.cpp b/shib-target/ArtifactMapper.cpp index 6f3f22f..02e1b06 100644 --- a/shib-target/ArtifactMapper.cpp +++ b/shib-target/ArtifactMapper.cpp @@ -24,11 +24,12 @@ #include "internal.h" -using namespace std; -using namespace log4cpp; -using namespace saml; -using namespace shibboleth; +using namespace shibsp; using namespace shibtarget; +using namespace shibboleth; +using namespace saml; +using namespace log4cpp; +using namespace std; SAMLResponse* STArtifactMapper::resolve(SAMLRequest* request) { @@ -50,7 +51,7 @@ SAMLResponse* STArtifactMapper::resolve(SAMLRequest* request) log.info("lookup succeeded, artifact issued by (%s)", issuer.get()); // Sign it? - const IPropertySet* credUse=m_app->getCredentialUse(entity); + const PropertySet* credUse=m_app->getCredentialUse(entity); pair signRequest=credUse ? credUse->getBool("signRequest") : make_pair(false,false); pair signatureAlg=credUse ? credUse->getString("signatureAlg") : pair(false,NULL); if (!signatureAlg.first)