How to Host WCF REST Service and WCF Data Service in the same global.asax
问题 I have a WCF REST web service that is hosted via a service route in global.asax which looks like this; protected override void RegisterRoutes(System.Web.Routing.RouteCollection routeTable) { routeTable.Add(new ServiceRoute("", new WebServiceHostFactory(), typeof(UserService))); } I am wondering whether or not it is possible to also host another web service (which is a WCF Data Service) in the same application. protected override void RegisterRoutes(System.Web.Routing.RouteCollection