Hello, I have a project (.NET 4.5x) that consists of an MVC folder and a separate Web API project in an API folder. I have created an entry point for the API My route is configured in the api to be : api/ControllerName/ActionName per convention. But I am getting a 404 error, not found. What am I missing here?
OK, guys, never mind. Come to find out, I had to add another "api" to my calling route, like this: http://sitename.com/api/api/Controller/Action Now it works. Hope that helps someone.