WCF 命名管道最小示例
简介:
通过命名管道进行通信是基础WCF 应用程序的一个方面。本文旨在为设置基于命名管道的最小 WCF 实现提供简化指南,解决与服务器和客户端配置相关的常见问题。
命名管道端点配置:
要配置命名管道端点,请将 HTTP 地址替换为以下内容:
<endpoint address="net.pipe://localhost/namedpipe" binding="netNamedPipeBinding" contract="ICalculator" name="NetNamedPipeBinding_ICalculator"> </endpoint>
Service托管:
对于服务托管:
// Create a URI with the named pipe address. Uri baseAddress = new Uri("net.pipe://localhost/namedpipe"); // Create a ServiceHost for the CalculatorService. ServiceHost selfHost = new ServiceHost(typeof(CalculatorService), baseAddress); try { // Add the named pipe service endpoint. selfHost.AddServiceEndpoint(typeof(ICalculator), new NetNamedPipeBinding(), ""); // Start the service. selfHost.Open(); } catch (CommunicationException ce) { Console.WriteLine("Exception occurred: {0}", ce.Message); selfHost.Abort(); }
客户端生成:
对于客户端生成:
// Create a channel factory for the named pipe endpoint. ChannelFactory<ICalculator> factory = new ChannelFactory<ICalculator>("NetNamedPipeBinding_ICalculator"); // Create a client proxy. ICalculator client = factory.CreateChannel();
以上是如何创建最小的 WCF 命名管道应用程序?的详细内容。更多信息请关注PHP中文网其他相关文章!