I could able to route the calls to WCF SOAP services using Routing Services in .NET 4.0
In the same way I need to route the request to WCF Data Services calls from one server to other server. Is it possible to achieve it using ASP.NET Routing module?
I could able to route the calls to WCF SOAP services using Routing Services
Share
With REST based services, you’re relying on “raw” HTTP as your transport. A simple “router” could accomplish this by performing these steps:
The ASP.NET Routing module could be made to work this way but it wasn’t intended for that.