Hello, I'm new to SAML and is currently in the process of evaluating the CS SAML v2.0 Component - this is a great tool BTW. Our requirement is to construct and POST (HTTP-Redirect) a SAML response to a 3rd party payment gateway that has the following format (abbreviated): <?xml version="1.0" encoding="UTF-8"?>
<saml2p:Response xmlns:saml2p="urn:oasis:names:tc:SAML:2.0:protocol" ID="Response-_xxxx" IssueInstant="2014-08-21T15:49:24.977Z" Version="2.0"> <saml2p:Status>
<saml2p:StatusCode Value="urn:oasis:names:tc:SAML:2.0:status:Success"/>
</saml2p:Status> <saml2:Assertion xmlns:saml2="urn:oasis:names:tc:SAML:2.0:assertion" ID="SAMLAssertion-_xxxx" IssueInstant="2014-08-21T15:49:24.977Z" Version="2.0">
.....
</saml2:Assertion>
</saml2p:Response> Note that the Response is prefixed with a " saml2p" instead of the regular " samlp". What's the best and recommended approach on going about this? Thanks! -JJ
|