Hi everyone,
Spring Security SAML insists on requesting the Artifact binding in the SAML authentication request (ProtocolBinding attribute):
How can I configure POST binding instead? Thanks for any answers!
-- Andreas
Spring Security SAML insists on requesting the Artifact binding in the SAML authentication request (ProtocolBinding attribute):
Code:
<saml2p:AuthnRequest xmlns:saml2p="urn:oasis:names:tc:SAML:2.0:protocol"
AssertionConsumerServiceURL="http://sp.com/saml/SSO/alias/defaultAlias"
Destination="https://idp.com/idp"
ForceAuthn="false"
ID="a4acj06d42fdc0d3494h859g3f7005c"
IsPassive="false"
IssueInstant="2012-12-05T17:07:18.271Z"
ProtocolBinding="urn:oasis:names:tc:SAML:2.0:bindings:HTTP-Artifact"
Version="2.0"
>
-- Andreas