Can the SimpleMembershipProvider be used with a ApiController or is it for classical web pages only? When trying to use it, I get the error "Membership.Provider" property must be an instance of ExtendedMembershipProvider.
If it is compatible, how can I call the .ValidateUser method without creating a cookie like WebSecurity.Login does?
UPDATE
I got it running within a Web API scaffolding after the following changes:
Web.config: outcomment the default membership & role provider within thesystem.webtag, as inserted by the Web API scaffolding.Change the template
InitializeSimpleMebershipAttributefrom a Mvc attribute toSystem.Web.Http.Filters. The attributes hook directly into the controller and Mvc doesn't work for anApiController.
However, the WebSecurity class is intermingled with forms authentication and the .Login method attaches a cookie to the http-header. WebMatrix.WebData exposes SimpleMembershipProvider, but there is no .ValidateUser to use it in a neutral way regarding authentication.
Is SimpleMembership actually intended to be used with anything else than forms authentication? I cannot find a clear answer to that on the web.
Thanks!