如何在 NetBeans 中运行 RMI?
我们可以通过以下步骤在netbeans中运行RMI。
右键build.xml ->运行目标->其他目标-> startRMI
但我需要的是通过Java代码启动RMI注册表。是否可以?帮我。
We can run RMI in netbeans by following steps.
Right click build.xml -> Run target -> Other targets -> startRMI
But what i need is to start RMI registry through Java code. Is it possible? Help me.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在您的实现类中:
In your implementation Class:
您应该首先启动“rmi 服务器”,然后启动客户端。为此,请查看本教程“实施服务器”部分。
顺便说一句:我建议使用 hessian 库,它可以通过 http 运行!因此您的管理员不需要明确为您的应用程序打开某些端口!
You should at first start the 'rmi server' and then the client. For this take a look at this tutorial section 'Implement the server'.
BTW: I would recommend to use hessian library which works over http!! so your admins do not need to explicitely open some ports for your app!