According to this on msdn, it tells you to set the Service attribute of the .svc file to System.Web.ApplicationServices.AuthenticationService, but then I can’t use it for my service library, so is it pretty much saying that if I want to use authentication this way, I should keep it separate from my service? How would I use my authentication service in my own service.
According to this on msdn , it tells you to set the Service attribute
Share
Authentication service exposes ASP.NET membership as SOAP service. It has no relation to custom WCF services. Custom WCF services use membership API directly via user name authentication.