In MVC4 I enabled <authentication mode="Windows"/>
in the web.config and created a custom role provider which then would automatically wrap the WindowsIdentity
with a RolePrincipal
for you. Worked like a charm.
How would you do this in MVC5 using OWIN and/or Microsoft.ASPNET.Identity?
Its the similar way to configure in web.config or configure at IIS Website.
<authentication mode="Windows" />
<authorization>
<deny users="?" />
</authorization>
Above is sufficient for intranet application. For additional scenarios like providing additional claims transformation as well as mixed authentication, for ASP.NET application, you can use custom OWIN middleware handler.
Have a look at example of such WindowsPrincipalHandler. You need to register it in startup.cs like app.Use(typeof(WindowsPrincipalHandler))
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With