从 EJB 调用 XML-RPC 服务的正确方法
我有一个无状态 EJB,需要使用 XML-RPC 更新另一个网站。我一直在使用 Apache XML-RPC 客户端 (http://ws.apache.org/xmlrpc/)。它一直工作正常,但在多次调用该方法后,整个应用程序服务器(GlassFish v2.2)锁定,我需要终止服务器以使其再次响应。
经过大量阅读后,我认为这是由 XML-RPC 客户端中的某些线程操作引起的,因为在 EJB 中不建议进行线程操作。
我只是想知道,如何在 EJB 中调用外部服务(例如 XML-RPC 服务)才能完全安全。
I've got a Stateless EJB that needs to update another website using XML-RPC. I've been using the Apache XML-RPC Client (http://ws.apache.org/xmlrpc/). It has been working fine, but after the method of called several times the whole application server (GlassFish v2.2) locks up and I need to kill the server to get it to respond again.
After extensive reading, I believe it is caused by some thread manipulating in the XML-RPC client, since thread manipulation is not recommended in EJB.
I am just wondering, how is one supposed to call external services (such as an XML-RPC service) in an EJB to be completely safe.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
该问题与 Apache XML-RPC 客户端无关,而是内存分配/垃圾收集配置错误。
The problem was not related to the Apache XML-RPC client, but a memory allocation / garbage collection misconfiguration.