I have a WCF project that hosts a database and a service with requests to this database is written. I have an ASP.NET MVC project on which I need to create a user authentication system.

I created an ASP.NET MVC project right away with an Identity template. But I do not know where my WCF service requests can be applied. In Identity, a database is required. But I cannot use the database on the web side.

Is it possible to implement such authentication in Identity, if so how? Or is it better to choose another authentication method in my case, which one?

    0