我想与两个使用WCF NamedPipe IPC的应用程序通信,服务器和客户端之间的连接没有建立,因为app.config中使用的某些信息或地址不正确。
我想可能是因为没有建立通信而丢失了一些东西,请帮助一下?
例如:服务器端
<system.serviceModel>
<services>
<service name="IService1">
<endpoint address="net.pipe://localhost/Service1"
binding="netNamedPipeBinding"
contract="NamedPipeService.IService1"
name="ConsoleServiceEndpoint" />
</service>
</services>
</system.serviceModel>客户端:
<system.serviceModel>
<client>
<endpoint address="net.pipe://localhost/Service1"
binding="netNamedPipeBinding" contract="NamedPipeService.IService1" name="ConsoleServiceEndpoint" />
</client>
发布于 2013-02-12 00:28:19
如果您的问题与SQL Server相关,则刚刚提出了另一个类似的问题,您可能处于相同的位置。
如果sql server的协议启用了命名管道,它可能与Please check this link.相关联。
https://stackoverflow.com/questions/14815975
复制相似问题