WCF in memory / assembly binding

652 Views Asked by At

Are there any options on using WCF to do in memory calls to assemblies?
Currently we deploy multiple services over basicHttp binding on different servers, for a single machine installation it would be enough to do an in memory call to the service. Is there any binding I can use without having to host the services locally (so not with named pipes) but in-process?

The endpoint location could be than something like this for example:

assembly://MyCoolService.dll
2

There are 2 best solutions below

0
On

There is no such build-in binding. NetNamedPipe is usually used for that. The only option is to check NullTransport.

0
On

no this is not possible, net.pipe binding is the closest you can get (and the with the best performance).