使用 Apache Camel 的 CXF Web 服务

发布于 2024-11-06 12:20:46 字数 270 浏览 2 评论 0原文

我想用 Camel 做这样的事情:

from(Web_Service_1_URI).to(Web_Service_2_URI).to(Web_Service_3_URI)。

因此,基本上,Web-Service1 充当 Web-Service2 和 Web-Service3 的外观(首先调用 Web-Service2,然后将结果用作 Web-Service3 的输入)。结果最终返回给Web-Service1。

我将如何使用骆驼来做到这一点?

问候, F。

I would like to do something like this with Camel:

from(Web_Service_1_URI).to(Web_Service_2_URI).to(Web_Service_3_URI).

So basically Web-Service1 acts as a facade for Web-Service2 and Web-Service3 (first Web-Service2 is called, than the result serves as input for Web-Service3). The result is finally returned to Web-Service1.

How would I do this using Camel?

regards,
F.

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

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

发布评论

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

评论(1

离不开的别离 2024-11-13 12:20:46

您将使用管道和过滤器 EIP
http://camel.apache.org/pipes-and-filters.html

您可以使用camel-cxf组件。但

from("cxf:bean:ws1").to("cxf:bean:ws2").to("cxf:bean:ws3");

3 个 Web 服务的 WSDL 必须“适合”。否则,您将需要翻译通话之间的消息
http://camel.apache.org/message-translator.html

You will use the pipes and filters EIP
http://camel.apache.org/pipes-and-filters.html

And you can use camel-cxf component. Something like

from("cxf:bean:ws1").to("cxf:bean:ws2").to("cxf:bean:ws3");

But the WSDL of the 3 web services have to "fit". Otherwise you will need to translate the message between the calls
http://camel.apache.org/message-translator.html

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