We can an MVC app that uses the default folder conventions for the HTML views, but we'd like to set up alternate "Services" folder with controllers used only for web services returning xml or json.
So the route "/Services/Tasks/List" would be routed to "/Services/TaskService.cs", while "/Tasks/List" would be routed to the standard "/Controllers/TaskController.cs"
We'd like to keep the service controllers separate from the view controllers. We don't think areas or using another project will work. What would be the best way to approach this?
You'll want to create your own controller factory implementing IControllerFactory.
Check out http://nayyeri.net/custom-controller-factory-in-asp-net-mvc for an example.
You can do this using Routing, and keeping the controllers in separate namespaces. MapRoute lets you specify which namespace corresponds to a route.
Example
Given this controllers
And the following routing
You should expect the following responses
/Services/Home
/Home
If you see yellow folder names Add folder Name in root
After, you have to modify routes.MapRoute into "App_Start > RouteConfig"
Modify Default route
and Add this