RMI、EJB 和回调
客户端是否可以将 RMI 对象作为参数传递给 EJB,以便 EJB可以回调客户端吗?
Is it possible for a client to pass an RMI object as an argument to an EJB so that the
EJB may callback the client?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您需要将调用中的连接详细信息传递给 EJB,并让 EJB 与客户端 RMI 服务器建立连接。
我的建议是使用消息传递和临时队列来实现异步行为,这听起来像是您想要实现的......
You'd need to pass the connection details in the call to the EJB and have the EJB make a connection to the client-side RMI server.
My advise would be to use messaging and a temporary queue for the asynchronous behaviour it sounds like you're trying to achieve...
不能。远程对象无法序列化并移动到其他位置,因为与远程对象本身的连接本质上是暂时的。
可以使用某种可以序列化的包装对象,并且在发送到 EJB 后将重新建立 RMI 连接。
No. Remote objects cannot be serialized and moved to other locations, since the connection to the remote object itself is transient in nature.
It may be possible to use some kind wrapper object that can be serialized and will reestablish the RMI connection once sent to the EJB.