akjain
akjain

Reputation: 1847

How to configure Azure ACS to return SAMLResponse parameter instead of RSTR xml?

how ACS authentication works

I have SSO login setup with Azure similar to the one above:

In the POST request (6&7) from ACS at my application (RP) end, I am getting:

~~~~~~~~

POST

wa: wsignin1.0

wresult: RSTR XML - (example format - data removed)

~~~~~~~~

whereas what my RP expects and understand is a SAMLResponse request parameter.

How can I configure Azure/ACS so that it returns SAMLResponse as a parameter in POST request.

I cannot change application (RP) to handle RSTR as of now and without SAMLResponse application cannot verify/authenticate the SAML Response.

Upvotes: 0

Views: 352

Answers (1)

leastprivilege
leastprivilege

Reputation: 18482

SAMLResponse is part of the SAML2p protocol - ACS does not support that. Maybe have a look at Azure AD instead -

http://blogs.technet.com/b/ad/archive/2015/02/12/the-future-of-azure-acs-is-azure-active-directory.aspx

Upvotes: 2

Related Questions