I have a solution with two projects:
- An ASP.NET MVC3 Web project.
- An ASP.NET MVC4 Web API project
I would like to know (if its possible) how to configure a route (for instance /api/{controller}/
) in the first project (global.asax) in order to be able to use an ApiController on my api project. I dont know what's the routehandler used in a Web API project.
Thanks a lot.