vote up 1 vote down star
1

What design pattern should I use to handle both forms authentication and active directory? (Administrative setting will allow you to chose either one of them).

From what I know, .NET membership provider only has forms right?

flag
Quite honestly, I'm not sure what you are asking. Are you asking about using database vs. active directory or forms vs windows integrated authentication? – tvanfosson Nov 1 '08 at 20:11

3 Answers

vote up 2 vote down

.Net Membership lets you use Windows or Passport as well as forms authentication.

There is an ActiveDirectoryMembershipProvider. Click on "How to use forms authentication with Active Directory" in the links at the top of this page to get details.

link|flag
vote up 0 vote down

To answer your design pattern question. On a project that had a similar situation (using two different systems for authentication), we used the Facade pattern to abstract away which system was actually doing the authentication (one or the other or even both!).

Then, within that facade, we would make the actual calls to the Authentication Providers.

link|flag
vote up 1 vote down

actually, you're probably looking for the "Strategy" pattern, since you need to implement a specific set of members (those required implement an authentication "provider"), but don't want the authentication to care HOW they are implemented. , http://en.wikipedia.org/wiki/Strategy_pattern

Facade is good, but that is applies more when you're trying to "reshape" an existing component to make it compatible with another component. Since you're implementing the providers, you don't need to "reshape" them to fit, you just implement them with the appropriate provider members in the first place..

link|flag

Your Answer

Get an OpenID
or

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