Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is there any tutorial available on how to use DotNetOpenAuth library? How to use the database which comes with the ASP.NET Authentication and extend it to use OpenAuth library?

Thanks

share|improve this question
What did your search on the Internet get you? – Patrick Jan 23 at 18:05
2  
I could not find any articles talking about how I could integrate the DB used in Forms Auth into OpenAuth library – Sampat Jan 23 at 19:13

closed as not constructive by Bill the Lizard Mar 26 at 12:23

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.

1 Answer

Ok here is how I would approach it (I'm sure there are some tutorials out there), I would first build the authentication system then implement my own version of membership provider as a class and use that as my default provider in web.config

as shown in this thread: Roles management with no provider? or Custom Membership Providers

or you could just a service like LoginRadius which provides the authentication mechanism and all is left for you to implement is the roles if you have any specific ones.

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.