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
There is no such build-in binding. NetNamedPipe is usually used for that. The only option is to check NullTransport.