Does ASP.NET MVC and WCF Web API use the same routing module for routing incoming requests to particular class methods?
Asked
Active
Viewed 383 times
1 Answers
2
Yes, the WCF Web API uses the ASP.NET routing engine (which by the way is not specific to ASP.NET MVC, it could be used in classic web forms applications as well).

Darin Dimitrov
- 1,023,142
- 271
- 3,287
- 2,928
-
1When hosting on IIS, Web API uses the same routing engine to select the endpoint. However, this usage is not mandatory (e.g. self-hosting) – Pedro Felix Sep 14 '11 at 22:07