J2SE客户端服务器应用程序:客户端调用RMI方法。服务器处理RMI方法并返回,但客户端从未收到它。有什么想法吗?
J2SE客户端服务器应用程序:客户端调用RMI消息。服务器处理RMI方法并返回,但客户端从未收到它。
有什么想法会发生这种情况吗?我们尝试的解决方案是设置客户端读取超时,并提出一个框架来重新发送请求或以其他方式优雅地处理这些失败。
但实际上,我想知道这种情况发生的根本原因,而不是解决症状。
J2SE Client Server App: Client calls RMI message. Server handles RMI method and returns, but Client never receives it.
Any ideas how this could happen? Our attempted solution is to set client read timeouts and come up with a framework for resending requests or otherwise handling those failures gracefully.
But really, I'd like to know any root causes for how this might happen rather than addressing the symptoms.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
客户端和服务器之间有防火墙吗? Rmi 首先查找注册表,并且无法预测哪些端口用于通信。
检查 http://www.wireshark.org/ 等网络工具来查找问题。
Do you have firewalls between client and server? Rmi lookup first the registry and it's not predictable which ports are used for communication.
Checkout networking tools like http://www.wireshark.org/ to track down the problem.