ASP.Net: How to properly implement this Authentication flow - Stack Overflow most recent 30 from stackoverflow.com 2009-11-27T05:02:37Z http://stackoverflow.com/feeds/question/466108 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/466108/asp-net-how-to-properly-implement-this-authentication-flow 0 ASP.Net: How to properly implement this Authentication flow John 2009-01-21T17:04:54Z 2009-01-21T17:47:27Z <p>Here's the flow I'm looking for for authentication:</p> <ol> <li>Attempt to pull in the user's name from windows authentication</li> <li>If that failed (user is external to network), use BASIC authentication to get the username/password.</li> <li>Check the username/password against the SQL database. If windows, password isn't required, if BASIC authentication and password is incorrect, prompt again</li> <li>Create the Identity object with the user name, and populate the user's roles via another SQL database call</li> </ol> <p>This would need to be used for multiple applications. </p> <p>What would be the best method of implementing this? Creating a HTTPModule? If so, what do I need to keep in mind (security, virtual directory setup, etc)</p> http://stackoverflow.com/questions/466108/asp-net-how-to-properly-implement-this-authentication-flow/466307#466307 3 Answer by Jim Petkus for ASP.Net: How to properly implement this Authentication flow Jim Petkus 2009-01-21T17:47:27Z 2009-01-21T17:47:27Z <p>This type of authentication is called Mixed Mode authentication (some google searches on this will get you alot of hits). We have a flavor of this running on a site I work on, however there are some quirks to our setup that have to do with odd business requirements.</p> <p>Here is an article that might get you going on the subject: <a href="http://www.15seconds.com/Issue/050203.htm" rel="nofollow">http://www.15seconds.com/Issue/050203.htm</a></p> <p>It is a big topic to give a huge detailed explanation of how you could set it up in one post.</p> <p>Good luck!</p>