NetNamedPipeBinding
本示例演示在同一台计算机上提供跨进程通信的 netNamedPipeBinding 绑定。命名管道不能跨计算机工作。本示例基于入门示例计算器服务。
在本示例中,服务是自承载服务。客户端和服务都是控制台应用程序。
提示
本主题的最后介绍了此示例的设置过程和生成说明。
绑定是在客户端和服务的配置文件中指定的。绑定类型是在 <endpoint> 元素的 binding 属性中指定的,如下面的示例配置所示:
<endpoint address="net.pipe://localhost/ServiceModelSamples/service"
binding="netNamedPipeBinding"
contract="Microsoft.ServiceModel.Samples.ICalculator" />
前面的示例演示如何配置终结点以使用具有默认设置的 netNamedPipeBinding 绑定。如果要配置 netNamedPipeBinding 绑定并更改它的一些设置,则必须定义绑定配置。终结点必须使用 bindingConfiguration 属性按名称来引用绑定配置。
<endpoint address="net.pipe://localhost/ServiceModelSamples/service"
binding="netNamedPipeBinding"
bindingConfiguration="Binding1"
contract="Microsoft.ServiceModel.Samples.ICalculator" />
在本示例中,绑定配置的名称为 Binding1
并具有以下定义:
<bindings>
<!--
Following is the expanded configuration section for a NetNamedPipeBinding.
Each property is configured with the default value.
-->
<netNamedPipeBinding>
<binding name="Binding1"
closeTimeout="00:01:00"
openTimeout="00:01:00"
receiveTimeout="00:10:00"
sendTimeout="00:01:00"
transactionFlow="false"
transferMode="Buffered"
transactionProtocol="OleTransactions"
hostNameComparisonMode="StrongWildcard"
maxBufferPoolSize="524288"
maxBufferSize="65536"
maxConnections="10"
maxReceivedMessageSize="65536">
<security mode="Transport">
<transport protectionLevel="EncryptAndSign" />
</security>
</binding>
</netNamedPipeBinding>
</bindings>
运行示例时,操作请求和响应将显示在客户端控制台窗口中。在客户端窗口中按 Enter 可以关闭客户端。
Add(100,15.99) = 115.99
Subtract(145,76.54) = 68.46
Multiply(9,81.25) = 731.25
Divide(22,7) = 3.14285714285714
Press <ENTER> to terminate client.
设置、生成和运行示例
若要生成 C# 或 Visual Basic .NET 版本的解决方案,请按照生成 Windows Communication Foundation 示例中的说明进行操作。
若要用单一计算机配置来运行示例,请按照运行 Windows Communication Foundation 示例中的说明进行操作。
Send comments about this topic to Microsoft.
© 2007 Microsoft Corporation. All rights reserved.