I have an ASP.NET MVC 1.0 webapp that serves as an interface to our external API. In particular, it has a control panel for our clients API, documentation, etc.
Now I want to transfer our actual API (which is a set of WCF services) inside this project, so for example, http://api.example.com/controlpanel/dashboard will be served by the ASP.NET MVC runtime, wherease http://api.example.com/services/1.0/users.svc will be served using the appropriate WCF service.
Of course, this can be done by adding the virtual services/1.0 folder in IIS, but I really want these two parts to be inside the same project.
Is it even possible? If so, how do I integrate these two animals?
asp.net-mvc wcf integration
Anton Gogolev
source share