BPEL 中的 Restful Web 服务调用
我的问题是:
是否有任何方法可以在 BPEL 中使用 Google Map 或 Youtube 等静态 Web 服务。我知道 BPEL 可与具有 WSDL 文件的 SOAP Web 服务配合使用。但是,我要求做一个项目,其中应包含与 BPEL 一起工作的宁静 Web 服务。我很欣赏 inetrnet 上的任何提示、链接和教程。
注意:
- 我对 Web 服务和 Bpel 概念都很陌生。我刚刚实现了一些来自互联网的示例。
- 我使用 eclipse helios、Apache Tomcat 7.0、Apache ODE 服务器、BPEL 设计器
My question is that:
Is there any method that I can use restful web services such as Google Map or Youtube in BPEL. I know that BPEL works with SOAP web services that have WSDL file. But, I asked to do a project which should contain restful web services work with BPEL. I appreciate any hints,links and tutorials on the inetrnet.
Note:
- I am very new to both web service and bpel concepts. I just implemented some samples from internet.
- I use eclipse helios, Apache Tomcat 7.0, Apache ODE server, BPEL designer
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
Apache ODE 支持自定义 HTTP 绑定,允许编排 RESTful HTTP 服务。详细信息请参见[1]。
TestHTTPBinding
* 测试用例 [2] 可能有助于入门。[1] http://ode.apache.org/wsdl-11- Extensions-for-rest.html
[2] http://svn.apache.org /viewvc/ode/trunk/axis2-war/src/test/resources/
Apache ODE supports a custom HTTP binding that allows the orchestration of RESTful HTTP services. See [1] for details. The
TestHTTPBinding
* test cases [2] may help as a starter.[1] http://ode.apache.org/wsdl-11-extensions-for-rest.html
[2] http://svn.apache.org/viewvc/ode/trunk/axis2-war/src/test/resources/
您还可以在此处找到示例 REST 服务调用流程。
WSO2 BPS 示例流程存储库中的 TestRESTProcess
You can find a sample REST service invocation process here as well.
TestRESTProcess in WSO2 BPS sample process repository
您可以编写一个简单的 SOAP Web 服务来为您调用 RESTful Web 服务。
You could write a simple SOAP web service that calls the RESTful web service for you.