Reputation: 1319
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
Upvotes: 0
Views: 647
Reputation: 22368
no this is not possible, net.pipe binding is the closest you can get (and the with the best performance).
Upvotes: 0
Reputation: 364289
There is no such build-in binding. NetNamedPipe is usually used for that. The only option is to check NullTransport.
Upvotes: 1