Implementing OpenID in ASP.net "Properly" - Membership or Authentication Provider? - Stack Overflow most recent 30 from stackoverflow.com2009-12-11T23:14:46Zhttp://stackoverflow.com/feeds/question/918156http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/918156/implementing-openid-in-asp-net-properly-membership-or-authentication-provider2Implementing OpenID in ASP.net "Properly" - Membership or Authentication Provider?Michael Stum2009-05-27T21:43:23Z2009-05-28T19:43:10Z
<p>There are several ways to use OpenID on ASP.net sites, but none of them seem to use the existing mechanism of Membership and Authentication Providers.</p>
<p>I wonder what the proper way would be to create a site that solely relies on OpenID? Continuing to use Forms Authentication but implementing a variant of the SqlMembershipProvider that does the lookup against OpenID?</p>
<p>Or would I go one level deeper and write my own FormsAuthenticationModule? That seems to be a bit too bare-bones, as (to my knowledge) Forms Authentication can looked up against any data source.</p>
<p>Or is there a third way, keeping the FormsAuthenticationModule but making it do the lookup against OpenID?</p>
<p>As this is for an ASP.net MVC application I have no use for the built-in Login WebForms Controls if that makes a difference.</p>
http://stackoverflow.com/questions/918156/implementing-openid-in-asp-net-properly-membership-or-authentication-provider/918203#9182030Answer by Joel Mueller for Implementing OpenID in ASP.net "Properly" - Membership or Authentication Provider?Joel Mueller2009-05-27T21:52:28Z2009-05-27T21:52:28Z<p>The ASP.NET MVC sample included with <a href="http://code.google.com/p/dotnetopenid/" rel="nofollow">DotNetOpenId</a> uses FormsAuthentication to log the user in after they have been authenticated by OpenID. It does not, as far as I can tell, do any integration with the Membership system.</p>
http://stackoverflow.com/questions/918156/implementing-openid-in-asp-net-properly-membership-or-authentication-provider/918390#9183901Answer by womp for Implementing OpenID in ASP.net "Properly" - Membership or Authentication Provider?womp2009-05-27T23:02:43Z2009-05-27T23:02:43Z<p>The <a href="http://www.codeplex.com/OpenIDMembership/" rel="nofollow">OpenID Membership Provider</a> project might be what you are looking for. </p>
<p>And even though you're not using Login controls, it's still recommended to leverage the Membership Provider model for authentication.</p>
<p>It's not usually necessary to go as deep as implementing FormsAuthentication specific functionality, since writing a MembershipProvider is pretty trivial, and I've never found a case where it wasn't flexible enough to handle. Note that often you only need to implement one method (ValidateUser()) of the interface to get a working provider.</p>
http://stackoverflow.com/questions/918156/implementing-openid-in-asp-net-properly-membership-or-authentication-provider/922816#9228162Answer by Andrew Arnott for Implementing OpenID in ASP.net "Properly" - Membership or Authentication Provider?Andrew Arnott2009-05-28T19:43:10Z2009-05-28T19:43:10Z<p>The Membership API that ASP.NET defines doesn't fit well at all with OpenID, which is probably why you don't see many systems using it. I haven't seen a need to use the Membership provider with OpenID yet, so it hasn't really become an issue. One project that attempted to make the Membership provider model fit with OpenID is <a href="http://code.google.com/p/dotnet-membership-provider/" rel="nofollow">http://code.google.com/p/dotnet-membership-provider/</a>, but it doesn't look like it's been maintained recently.</p>
<p>As womp said, you don't need to redo the FormsAuthenticationModule. It works perfectly well with OpenID. </p>
<p>Check out the samples that come with DotNetOpenAuth to see how things can work without the membership provider.</p>