I have a register routes route maper with 5 routes
one of them is a HelloWorld just for testing and the others are specific to my module. Strangely my last route does not seem to be registered even if I comment out all the other routes it never hits the method in the controller.
Am I doing something so very wrong? It seems this is or should be an easy thing to have 3 or four methods in a webapi and be able to call them.
in my map I have this
mapRouteManager.MapHttpRoute("MyServices", "default", "{controller}/FetchEvent/{EventID}/{ModuleIID}", new[] { "EventsWebAPI2" });
here is the url I am testing
http://install1.dnndev.me/DesktopModules/MyServices/API/EventsWebAPI/FetchEvent/3/414
Is it something simple I am just overlooking?