Hello!
I was considering to use Identity 2.0 to authenticate users in a new application I'm creating.
However, I cannot use OWIN. The template from Visual Studio uses a lot of classes from the OWIN class library (like SignInManager). So, it got me thinking. Maybe instead of trying to port the classes to work with "regular" forms authentication, maybe I should use a different approach.
Is SimpleMembership viable? Or maybe Membership+RoleManager is a better option?
What would you suggest for an application that can't use OWIN?
Ps.: The application I want to create is a MVC + Web API application using Forms authentication.
Thanks in advance.

Go to the complete details ...