Alen Jose
Alen Jose

Reputation: 1

SAML request for SSO from Service provider to ADFS in asp.net C#

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

Answers (1)

Anders Abel
Anders Abel

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

Related Questions