mixed mode authentication against AD and fallback to the database if it fail with Membership providers

流过昼夜 提交于 2019-11-27 19:27:19

问题


my user will use form authentication against Active Directory or database. Theres no Windows Integrated Authentication there!!

What i want is when the user submit the authentication form, it will try to validate the user against Active Directory and if it fail, try with the database.

How can i do that? What i had in mind was to build a custom membership provider that will encapsulate the logic but im not sure how to start.

is there any better idea?


回答1:


The only way you are going to be able to implement this is by creating a custom provider.

In a perfect world, you could simply create a facade provider and then leverage the appropriate provider, SQL or AD, as necessary, to authenticate and return MembershipUser to whatever degree of completeness you find necessary.

In the real world, this is still possible but you will need to jump through a few hoops:

  • create your facade provider and place it first in the providers child element of the membership element AND set it as defaultProvider in the membership element
  • properly configure a SqlMembershipProvider and an ActiveDirectoryMembershipProvider and place them after your facade.
  • from your facade, access the configured providers from the static Membership.Providers collection to perform the functions as needed.

You may find that you need to repeat this pattern if you need to use roles and while it is applicable, the implementation will be a bit more complex and beyond the scope of this post.

Alternately, full source code for the SQL providers can be found here and are a great starting point and guidance for implementing an industrial grade custom provider.

I would suggest first exploring the path of least resistance (and least labor and headache) and spike a facade before attempting to implement a custom security feature from scratch.

Good luck.




回答2:


As you said, you're best of creating a custom membership provider to handle this situation.

MSDN has a good overview of creating a custom membership provider here, and a great example of an ODBC membership provider.

It should give you a good start.



来源:https://stackoverflow.com/questions/3232072/mixed-mode-authentication-against-ad-and-fallback-to-the-database-if-it-fail-wit

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!