I have a third party application, built with WCF. It is installed as a windows service and it supports wsHttpBinding
and basicHttpBinding
by default.
Is there a way to switch to a more optimized binding such as tcpBinding
or named pipes
?
I will be consuming the service within same server so named pipes is an option.
I want to know if I can do it on a third party just by modifying the .config files of the windows service.