如何在两个 CXF 端点之间设置 Camel 路由,以正确传输 SOAP 错误?

发布于 2024-12-09 14:02:02 字数 792 浏览 0 评论 0原文

我在两个 CXF 端点之间设置了一条路由,如下所示:

<cxf:cxfEndpoint id="monitoringService"
  address="${esb.monitoring-service.ep.address}" serviceName="s:monitoring-service"
  endpointName="s:portSOAP" wsdlURL="classpath:/webservices/monitoring-service.wsdl"
  xmlns:s="http://xyz/monitoring/"
/>

<endpoint
  id="originMonitoringService"
  uri="${origin.monitoring-service.ep.address}" />

<route>
  <from uri="cxf:bean:monitoringService?dataFormat=MESSAGE" />
  <to ref="originMonitoringService" />
</route>

但是,当“originMonitoringService”发生 SOAP 故障时,它们似乎不会转发到 Camel 发布的端点,因此不会到达正在连接的客户端它。

我该如何声明此连接?

(仅供参考: ${xx} 样式变量在运行时被正确替换为 http://somehost/someservice 之类的值。 )

I set up a route between two CXF endpoints up like this:

<cxf:cxfEndpoint id="monitoringService"
  address="${esb.monitoring-service.ep.address}" serviceName="s:monitoring-service"
  endpointName="s:portSOAP" wsdlURL="classpath:/webservices/monitoring-service.wsdl"
  xmlns:s="http://xyz/monitoring/"
/>

<endpoint
  id="originMonitoringService"
  uri="${origin.monitoring-service.ep.address}" />

<route>
  <from uri="cxf:bean:monitoringService?dataFormat=MESSAGE" />
  <to ref="originMonitoringService" />
</route>

However when there are SOAP faults happening at the 'originMonitoringService' then they seem not to be forwarded to the endpoint published by Camel and as such do not reach the client that is connecting to it.

How am I supposed to declare this connection?

(Just FYI: ${xx}-style variable are properly replaced with values like http://somehost/someservice at runtime.)

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

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

发布评论

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

评论(1

绳情 2024-12-16 14:02:02

此问题应通过 CAMEL-4570 修复

This issue should be fixed by CAMEL-4570

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