I would really like to be able to use a Web Api controller with the system but I can't find a way to configure the route to my controller. Can you help me out here?
/Magnus
This is the actual route I would like to get in.
RouteTable.Routes.MapHttpRoute(
name: "DefaultApi",
routeTemplate: "hammarsapi/{controller}/{id}",
defaults: new { id = System.Web.Http.RouteParameter.Optional }
);