同一台计算机上的两个程序之间的通信如何?

发布于 2024-12-05 00:21:34 字数 830 浏览 0 评论 0原文

我不知道如何开始。谷歌搜索后,我发现了这个 这里

//This is how you do it (kudos to sipwiz)
UdpClient udpServer = new UdpClient(localpt); 

//This is what the proprietary (see question) sender would do (nothing special) 
//!!! The following 3 lines is what the poster needs...
//(and the definition of localpt, of course)
UdpClient udpServer2 = new UdpClient();
udpServer2.Client.SetSocketOption(
    SocketOptionLevel.Socket,
    SocketOptionName.ReuseAddress, true);

udpServer2.Client.Bind(localpt);

但我不知道我还需要什么。我尝试了此处中的示例,但收到错误消息:< em>“现有连接被远程主机强制关闭。”

我该如何继续?

I don’t know how to begin. After Googling, I’ve found this here:

//This is how you do it (kudos to sipwiz)
UdpClient udpServer = new UdpClient(localpt); 

//This is what the proprietary (see question) sender would do (nothing special) 
//!!! The following 3 lines is what the poster needs...
//(and the definition of localpt, of course)
UdpClient udpServer2 = new UdpClient();
udpServer2.Client.SetSocketOption(
    SocketOptionLevel.Socket,
    SocketOptionName.ReuseAddress, true);

udpServer2.Client.Bind(localpt);

But I don’t know what else I need. I tried an example from here, but got an error message: "An existing connection was forcibly closed by the remote host."

How do I proceed?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(3

东走西顾 2024-12-12 00:21:34

我建议放弃 UDP。请改用命名管道

他们更可靠。

I'd suggest ditching UDP. Instead, use Named Pipes.

They are more reliable.

欲拥i 2024-12-12 00:21:34

我认为最好将 WCF 与命名管道绑定一起使用

I think it's better to use WCF with Named Pipe binding

澜川若宁 2024-12-12 00:21:34

命名管道是同一系统上的最佳选择。
由于性能优于 TCP,因为流量不使用网络接口。

Named pipe is the best option on the same system.
Due the fact that the performance is better then TCP cause the traffic is not using the network interfaces.

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