Waqar Haider
Waqar Haider

Reputation: 119

How to secure an existing Asp.Net project with ADFS

I have a big project in asp.net and I want to embed ADFS in it for authentication purpose.

Please suggest some links.

Thanks

Upvotes: 0

Views: 870

Answers (1)

rbrayb
rbrayb

Reputation: 46803

Just to clarify:

You don't embed ADFS in an ASP.NET application. You add WIF or OWIN to the application and bind this with ADFS which sits on a Windows server. The latest version is ADFS 3.0 on Windows Server 2012 R2.

How To: Build Claims-Aware ASP.NET Web Forms Application Using WIF

WS-Federation in Microsoft OWIN Components–a quick start

OWIN is the newer technology.

And then you bind your application to ADFS.

Building a test claims-aware ASP.NET application and integrating it with ADFS 2.0 Security Token Service (STS)

Upvotes: 1

Related Questions