在远程处理中通过特定客户端端口发送消息

发布于 2024-08-23 06:31:52 字数 105 浏览 5 评论 0原文

我正在.net remoting中做应用程序。实际上,我们在服务器端注册一个通道并使用服务器的IP和端口连接客户端,但我想通过特定端口从客户端发送消息,例如:8085或8086 .如何实现这一点?

I am doing applications in .net remoting.actually we register a channel in the server side and connect the client using the iP and port of the server,but i want to send my messages from client through a specific port for ex: 8085 or 8086.how to achieve this?

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

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

发布评论

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

评论(1

ぃ双果 2024-08-30 06:31:52

为什么?指定客户端端口有很多缺点:

  • 客户端必须有效地是单线程
  • TCP 将强制执行两分钟的 TIME_WAIT,然后才能重用端口。

防火墙管理员有时喜欢创建这些规则,却没有意识到它们会削弱客户端的能力。据我所知,这些规则实际上并没有任何有用的目的。

Why? There are numerous disadvantages to specifying the client port:

  • the client must effectively be single-threaded
  • TCP will impose a two-minute TIME_WAIT before you can reuse the port.

Firewall administrators sometimes like to create these rules not realizing that they cripple the client. Such rules don't actually server any useful purpose that I'm aware of.

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