SSO POST Request

Hi,

In your knowledge base there is a topic at http://componentspace.com/Forums/45/SAML-HighLevel-API

In the third post one of the developers writes “SAMLServiceProvider.InitiateSSO sends the authn request using the HTTP-redirect binding by default or, if configured to do so, the HTTP-Post binding”.

Where/How do I Configure the request from the SP to the IDP to be a POST?

Thanks

In your SAML configuration (eg saml.config file) for the specify:
SingleSignOnServiceBinding=“urn:oasis:names:tc:SAML:2.0:bindings:HTTP-POST”
For example:
<PartnerIdentityProvider Name=“urn:componentspace:ExampleIdentityProvider”
SingleSignOnServiceBinding=“urn:oasis:names:tc:SAML:2.0:bindings:HTTP-POST”

SAMLServiceProvider.InitiateSSO will then use the HTTP-Post binding to send the authn request.

Thanks, worked like a charm