Use ADFS while maintaining forms authentication

adfsauthenticationforms

I have a question regarding ADFS and forms authentication. I currently maintain a database of users and have built a somewhat complex claims-based system around it. All of my clients use forms authentication to access my website (ASP.NET). Recently one of my clients expressed a desire to switch to a single sign on model. I would like to use ADFS to accomplish this. My question is how do I go about using both forms authentication and ADFS at the same time. I need all of my other clients to still be able to access the site using forms authentication. I know this cannot be a rare problem, but I can't seem to find any good answers to the question. Thanks very much.

Best Answer

using ADFS V2.0 allows both types of authentication, windows and forms and both relies on the active directory that means you must save and keep all the users data in the active directory.

pleases see http://www.richardawilson.com/2010/10/adfs-20-login-page.html

if you need the ADFS reads the users and credentials from another source than the Active directory, in that case you must implement a custom claim provider and configure the ADFS.

Related Topic