ASP.Net: How to properly implement this Authentication flow - Stack Overflow most recent 30 from stackoverflow.com2009-11-27T05:02:37Zhttp://stackoverflow.com/feeds/question/466108http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/466108/asp-net-how-to-properly-implement-this-authentication-flow0ASP.Net: How to properly implement this Authentication flowJohn2009-01-21T17:04:54Z2009-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#4663073Answer by Jim Petkus for ASP.Net: How to properly implement this Authentication flowJim Petkus2009-01-21T17:47:27Z2009-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>