Search code examples
c#asp.netwcfasp.net-core-mvc

Add WCF service to ASP.NET Core MVC application


We've got server-side application implemented in ASP.NET Core MVC 1.1.0 that serves web application. Everything works perfectly but we were requested to provide WCF service for third-party client app.

I know that we could put WCF between app's logic and MVC's api. However, it seems like significant amount of work since the application isn't the smallest one.

I wonder if it's possible to build WCF service beside MVC and host it as one application on iis.


Solution

  • That is currently not possible. The WCF app has to be a separate app.