RMI、EJB 和回调

发布于 2024-07-09 07:45:32 字数 51 浏览 7 评论 0原文

客户端是否可以将 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 技术交流群。

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

发布评论

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

评论(2

淡淡的优雅 2024-07-16 07:45:32

您需要将调用中的连接详细信息传递给 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...

魔法少女 2024-07-16 07:45:32

不能。远程对象无法序列化并移动到其他位置,因为与远程对象本身的连接本质上是暂时的。

可以使用某种可以序列化的包装对象,并且在发送到 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.

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