Hi!
I have an ASP.NET MVC 1.0 webapp, which serves as a front-end site for our external API. More specifically, it has a Control Panel for our API clients, documentation, etc.
Now I want to move our actual API (which is a set of WCF services) inside this project, so that, for example, http://api.example.com/controlpanel/dashboard
would be served by ASP.NET MVC runtime, wherease http://api.example.com/services/1.0/users.svc
would be served by an appropriate WCF service.
Granted, this can be done by adding a services/1.0
virtual folder in IIS, but I really want these two parts to be inside one project.
Is this doable at all? If yes, how do I integrate these two beasts?