将 SOAP Web 服务调用转换为 JMX API

发布于 2024-08-17 00:42:57 字数 276 浏览 3 评论 0原文

我可以使用应用程序 1 的 SOAP Web 服务。而且,我想实现一个 Java 应用程序,将应用程序 1 的 Web 服务调用转换为应用程序 2 的 JMX API。因此,应用程序 1 可以通过应用程序 2 管理一堆操作。

如果我正确理解问题,我想构建一个 SOAP/JMX 代理(远程代理设计模式)作为我的转换层。这意味着它将接收 SOAP 请求并将其转换为 JMX,转发转换后的请求,然后执行相反的操作以返回响应。

您对这种方法有什么建议吗?是否还有其他方法可以继续?任何指示/更正都将受到高度赞赏。

I have SOAP web services for Application 1 available to me. And, I'd like to implement a Java application that translate Application 1's Web Services calls to Application 2's JMX API. So App 1 can manage a bunch of operations through App 2.

If I understand the problem correctly, I want to build a SOAP/JMX Proxy (Remote Proxy design pattern) as my translation layer. This means it will receive SOAP requests and translate them to JMX, forwarding the translated request and then do the inverse to return the response.

Do you have suggestions on this approach and if there is another way to proceed? Any pointers/corrections are highly appreciated.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

迷荒 2024-08-24 00:42:57

墓志铭,这看起来像是您同一问题的转发 关于如何处理涉及 API 集成的项目的想法。本质上,它就是代理模式。您的 Web 服务只是通过 JMX API 调用另一个对象。

Epitaph, this looks like a repost of your same question Ideas on how to approach a project involving Integration of APIs. In essence, it is the proxy pattern. Your web services are just calling another object via the JMX API.

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