我可以在没有 CXF 或 Axis2 的情况下在应用程序服务器(例如 WAS、WLS)中使用 Apache Camel 和 Jax-ws 实现吗?
我不想将 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
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.
据我所知这是不可能的。 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.