Support WCF via NamedPipes (and maybe UnixDomainSockets) #84
Labels
feature-request
New feature or request
needs-clarification
Features or bugs that need further clarification and should be discussed.
Background
The in the 1.2 and 1.3 Launchers we support WCF (SOAP) over NamedPipes.
Since newer dotnet versions don't support WCF natively we use CoreWCF in the Launcher 2.0 which up until version 1.4 did not support NamedPipes.
Some of our users like to use NamedPipes instead of http to not have to open any ports on their machines.
Feature
We should add support for WCF via NamedPipes on Windows when the url prefix is set to
net.pipe://
like we do in the 1.3 launcher.Since 1.5 CoreWCF also supports UnixDomainSockets so we should use that instead of NamedPipes on Linux and MacOS.
looks like it should be fairly easy to support it as well with the current implementation. 😄
Open Questions
Do we want to automatically use
UnixDomainSockets
when the url prefix isnet.pipe://
or do we want to use a different url prefix.Do we want to deprecate the
net.pipe://
prefix and switch to something likeipc://
for both ora new one for either (e.g.
namedpipe://
andunixdomainsocket://
)The text was updated successfully, but these errors were encountered: