简体   繁体   中英

Mixed authentication for OWIN

I have two authenticate users in two ways:

  1. If they are an internal user we authenticate through Windows' active directory
  2. If they registered with the site they authenticate through Forms Authentication

In MVC 3/4 I was able to accomplish this by implementing a custom membership provider and custom role provider.

Is the same possible in MVC 5 using OWIN and Identity and how can it be done?

In essence a mixed mode is a forms authentication with a windows authentication entry point, once the user gets passed it, the normal forms authentication flow takes place.

Enabling Windows Authentication in Katana

Katana does not currently provide OWIN middleware for Windows Authentication, because this functionality is already available in the servers

So for windows authentication to work, I have to rely on one of the provided hosts, either IIS or Self-host ( System.Net.HttpListener ) .

I made a solution that makes it look like an external provider, mapping windows identities as external logins.

混合认证

Source code : https://github.com/MohammadYounes/MVC5-MixedAuth

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM