Dhwanil Shah
Dhwanil Shah

Reputation: 1082

Have ADFS authenticate against ASP.NET Membership database

Is it possible to make make ADFS to authenticate a user against an ASP.NET Membership database in SQL Server? Alternatively can a .NET C# plug-in be created and installed in ADFS which could provide this "service" to ADFS?

Upvotes: 1

Views: 3008

Answers (3)

rbrayb
rbrayb

Reputation: 46700

A lot of issues with ADFS can be worked around by federating ADFS with another STS and adding the required functionality to the STS.

StarterSTS is a good example of an STS that authenticates against an instance of a SQL Server aspnetdb database.

Upvotes: 1

No, this is not possible. See this answer of mine for the official documentation at this point, and for an alternative solution involving a custom STS.

Upvotes: 1

Ian
Ian

Reputation: 4255

As far as I know this is not possible. ADFS (v1 and v2) ONLY supports an AD Domain Controller as the Authentication source of users. Other flavors of AD do not work (ADAM/AD LDS).

There are other options that are easier to deploy and give you IP-STS (aka IDP) functionality. For example, our PingFederate product can leverage your SQL Server pretty easily if you are interested.

Upvotes: 1

Related Questions