Reputation: 1
Could you please share how to Manage SAML post request from asp.Net Client application to ADFS server? Is there need any other configuration in client side?
In our case the ADFS server already configured, we need to implement that SSO in our asp.net application using SAML request. Could you please share your knowledge?
Upvotes: 0
Views: 642
Reputation: 69250
There is no built in support in the .NET framework for the SAML2 protocol. And don't write your own (I've done that, it's a LOT of work to do it right and secure). Find an open source or commercial SP (Service Provider) implementation for .NET and use that. There are plenty of them (disclaimer: I'm the author of one of the SP implementations, but to avoid a race from everyone with an SP implementation to post and recommend their one, I won't recommend any here).
Upvotes: 1