Don't miss out Virtual Happy Hour this Friday (April 26).

Try our conversational search powered by Generative AI!

Does Owin authentication exclude MultiplexingMembershipProvider

Vote:
 

If I use Owin authentication configured in startup class is it possible to also add a MultiplexingMembershipProvider to enable an sql account login?

In documentation Owin requires membersihp and rolemanger providers to be empty in web.config

<membership>
<providers>
<clear />
</providers>
</membership>
<roleManager enabled="false">
<providers>
<clear />
</providers>
</roleManager>

#218371
Mar 11, 2020 20:32
Vote:
 

If I understood you correctly, when you configure OWIN and therefore also Episerver AspNet identiy pipeline and call app.AddCmsAspNetIdentity(...) SQL logins are used there. Or at least users from the database that you can specify via configuration when adding CMS ASP.NET identity.

Are you looking for a way to a) adding back Sql memebership provider (assuming that it was one of the providers behind multiplex) in Owin pipeline or b) adding users created and managed by Sql memebership provider (without adding this provider to the pipeline)?

#218410
Mar 12, 2020 11:45
* You are NOT allowed to include any hyperlinks in the post because your account hasn't associated to your company. User profile should be updated.