我可以在没有 CXF 或 Axis2 的情况下在应用程序服务器(例如 WAS、WLS)中使用 Apache Camel 和 Jax-ws 实现吗?

发布于 2024-12-04 15:29:19 字数 123 浏览 2 评论 0原文

我不想将 Axis2 或 CXF 与 Camel 一起使用。是否可以使用 JAX-WS 参考实现或 weblogic 应用程序服务器或 websphere 应用程序服务器或 tomcat + jax-ws 参考实现来配置camel?

I dont want to use Axis2 or CXF with Camel. Is it possible to configure camel with JAX-WS reference implementation or weblogic application server or websphere application server or tomcat + jax-ws refrence implementation?

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

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

发布评论

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

评论(2

云归处 2024-12-11 15:29:19

Camel 提供了 2 个开箱即用的 Web 服务组件:camel-cxf 和camel-spring-ws。对于任何其他 Web 服务集成,只需使用纯 java。从任何 Java 代码中,您都可以使用 ProducerTemplate 向 Camel 发送消息。这样您就可以将应用程序服务器的 JAX-WS 与 Camel 桥接起来。我们曾经在 Apache Camel 上有一个旧示例,展示了如何将 Axis 1.4 与 Camel 集成,但该示例最近已作为清理的一部分被删除。

Camel provides 2 web services components out of the box: camel-cxf and camel-spring-ws. For any other web service integration just use plain java. From any Java code, you can send a message to Camel using the ProducerTemplate. Then that way you can bridge the JAX-WS of the application server with Camel. We used to have an old example at Apache Camel that showed how to integrate Axis 1.4 with Camel, but that examples has been removed as part of cleanup recently.

浅听莫相离 2024-12-11 15:29:19

据我所知这是不可能的。 Camel-axis 和camel-cxf 组件直接使用cxf 和axis 类。您可以使用 SoapDataFormat 但这仅适用于简单情况而不是完整堆栈。

As far as I know that is not possible. The camel-axis and camel-cxf components are directly using the cxf and axis classes. You could use the SoapDataFormat but this is just for simple cases and not a full stack.

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