JBoss NamingService 上的端口和 RmiPort
在 JBoss 5 上,有 NamingService,它允许您指定属性 Port
(默认情况下为 1099)和 RmiPort
(默认情况下为 1098)。我以前从来不需要知道它是如何工作的,它一直都是 Just Worked™。
这些端口如何使用?是使用 Port
在 JNDI 中查找对象,然后使用 RmiPort
调用它们,还是它们都提供不同的方法来调用同一类上的相同方法?
On JBoss 5, there is the NamingService, which lets you specify the properties Port
(1099 by default) and RmiPort
(1098 by default). I've never needed to know how this works before now, it has always Just Worked™.
How are these ports used? Is Port
used to find objects in JNDI and then RmiPort
used to invoke them, or do they both provide different approaches for invoking the same methods on the same classes?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
正如你所说,
Port
是rmi注册表的端口,RmiPort
是建立连接的端口As you said,
Port
is the port of the rmi registry, andRmiPort
the port where the connections are made