I want to communicate with two application using WCF NamedPipe IPC, The connection is not being established between server and client because some information or the address used in app.config is incorrect.
I suppose something is missing because of which the communication is not established, Please help ?
ex : Server Side
<system.serviceModel>
<services>
<service name="IService1">
<endpoint address="net.pipe://localhost/Service1"
binding="netNamedPipeBinding"
contract="NamedPipeService.IService1"
name="ConsoleServiceEndpoint" />
</service>
</services>
</system.serviceModel>
Client Side :
<system.serviceModel>
<client>
<endpoint address="net.pipe://localhost/Service1"
binding="netNamedPipeBinding" contract="NamedPipeService.IService1" name="ConsoleServiceEndpoint" />
</client>