Questions tagged «named-pipes»


4
命名管道示例
我如何编写一个简单的(最低工作所需的裸机)测试应用程序,以说明如何使用IPC /命名管道? 例如,如何编写一个控制台应用程序,其中程序1向程序2说“ Hello World”,程序2接收消息并向程序1回复“ Roger That”。
130 c#  ipc  named-pipes 


5
WCF命名管道的最小示例
我正在寻找WCF命名管道的最小示例(我希望有两个最小的应用程序,服务器和客户端,它们可以通过命名管道进行通信。) 微软有一篇引人入胜的文章“ 入门指南”,它通过HTTP描述了WCF,而我正在寻找有关WCF和命名管道的类似信息。 我已经在Internet上找到了几篇文章,但是它们有些“高级”。我需要一些最少的东西,只有强制性的功能,因此我可以添加代码并使应用程序正常运行。 如何替换为使用命名管道? <endpoint address="http://localhost:8000/ServiceModelSamples/Service/CalculatorService" binding="wsHttpBinding" bindingConfiguration="WSHttpBinding_ICalculator" contract="ICalculator" name="WSHttpBinding_ICalculator"> <identity> <userPrincipalName value="OlegPc\Oleg" /> </identity> </endpoint> 如何替换为使用命名管道? // Step 1 of the address configuration procedure: Create a URI to serve as the base address. Uri baseAddress = new Uri("http://localhost:8000/ServiceModelSamples/Service"); // Step 2 of the hosting procedure: Create ServiceHost ServiceHost …
90 c#  wcf  named-pipes 
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.