views:

283

answers:

2

I am well aware that the Rest based approach is targeting HTTP. I would love to use the REST APIs and other goodness between processes on the same computer. Since ADO.NET data services is built on top of WCF it would seem reasonable to assume that the transport in configurable to work with any of the WCF supported transports. Anyone know if there is a way to configure it to send traffic via namedpipes?

A: 

In .NET 3.5 there is built-in named pipe binding for WCF. See the MSDN for details.

csgero
+2  A: 

Actually the REST architectural style does not in any way require HTTP. That just happens to be the most common implementation protocol. However, ADO.Net data services uses System.ServiceModel.Web which IS tied to http. You can certainly do REST over named pipes, you will just have to find a different protocol.

Darrel Miller