使 C# Web 应用程序通过命名管道与 Windows 窗体进行通信?

发布于 2024-10-27 07:15:39 字数 131 浏览 0 评论 0原文

我是编程新手。现在我一直在开发一个 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

毅然前行 2024-11-03 07:15:39

我可能是错的,但命名管道(特别是 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).

梦中楼上月下 2024-11-03 07:15:39

这篇文章有帮助吗?

摘自那里

(...) 您可以使用的工作代码
下载并查看。

PipeClient.zip
PipeServer.zip

这些 zip 文件每个都包含一个 Visual
带有工作代码的 Studio 2005 解决方案
以及用于测试通信的 GUI
客户端和服务器之间。

Does this article help?

Taken from there:

(...) working code which you can
download and view.

PipeClient.zip and
PipeServer.zip

These zip files each contain a Visual
Studio 2005 solution with working code
and a GUI for testing communication
between the client and the server.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文