使用 Apache Camel 的 CXF Web 服务
我想用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您将使用管道和过滤器 EIP
http://camel.apache.org/pipes-and-filters.html
您可以使用camel-cxf组件。但
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
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