使 C# Web 应用程序通过命名管道与 Windows 窗体进行通信?
我是编程新手。现在我一直在开发一个 C# Web 应用程序,该应用程序应该能够通过命名管道与 Windows 窗体进行通信?这可能吗?如果可以的话,怎样做?
注意:Web 应用程序将位于服务器上,Windows 窗体将位于客户端上。
I am new to programming. Right now I am stuck with developing a C# web application that should be able to communicate with a Windows Form via named pipes? Can this be possible? If possible, how?
Note: Web application will be on the server and Windows Form will be on the client.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我可能是错的,但命名管道(特别是 WCF 中的 NetNamedPipeBinding - 感谢 Chris)是严格的进程间 IIRC。
您最好在服务器上托管 WCF 服务,并通过 Web 应用程序和 Windows 窗体应用程序连接到该服务(假设您可以使用 .Net 4)。
I could be wrong, but named pipes (specifically, the NetNamedPipeBinding in WCF - thanks Chris) are strictly inter-process IIRC.
You'd be better off a hosting WCF service on the server and connecting to that via the web-app and the Windows Forms app (assuming you can work with .Net 4).
这篇文章有帮助吗?
摘自那里:
Does this article help?
Taken from there: