Web API 2 routing attributes work in one controller but not another
Using .NET 4.5.1, Web API 2, Visual Studio 2013: I have a Web API which has the following routes... /api/providers/specialties /api/providers/specialties/123 /api/providers/specialties/medicine These work as expected... the first one gets a list of all specialties, the second one gets specialty ID 123, and the third gets all specialties with "medicine" in the name. I also have these routes... /api/locations/specialties /api/locations/specialties/123 /api/locations/specialties/ortho Only the last two work... the first one returns this error: No HTTP resource was found that matches the request