Peter
Peter

Reputation: 803

C# MVC ADFS Authentication

I have a C# MVC application which requires ADFS authentication. ADFS was not considered at the initial stage of the development until completion of the application. Any ideas on how to make the application aware of ADFS? I have configured ADFS with the right claims, the challenge is making the application aware. Any idea is appreciated. I am using ADFS 2.0. It is On-Premise ADFS

Upvotes: 0

Views: 847

Answers (2)

rbrayb
rbrayb

Reputation: 46700

Making the application "ADFS aware" requires that the application uses one of the supported protocols i.e. WS-Fed, SAML or OpenID Connect.

Adding WIF (WS-Fed) is a good option.

Upvotes: 1

Related Questions