I am trying to add some WebAPI support to my asp.net 4 RC site, and wish to put it into an area. I have seen that someone managed to get this running on the beta (here) , but to be honest, have no idea what I am doing in the RC.
Has anybody managed to add area support to the RC of WebAPI?
You can put Api controllers in any folder you like, you don’t need to create an Area like you did for MVC. What I usually do is create a subfolder ‘Api’ inside ‘Controllers’ folder of MVC site. Just register routes for your Api controllers and it will work.