从 WSDL 生成 RESTful 代理
假设我获得了某些 Web 服务的 WSDL。我确实需要 RESTful 服务,因为我将创建一个 JavaScript 客户端。
是否有任何工具可以创建充当传统 Web 服务代理的 RESTful 服务?
我不在乎什么语言...PHP、Java...无论什么。
谢谢
Let's say I was given WSDLs for some web services. I really need RESTful services as I will be creating a JavaScript client.
Is there any tool to create RESTful services that act as a proxy to the traditional web services?
I don't care what language...PHP, Java...whatever.
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我不知道有什么现成的解决方案可以满足这种需求。
不过,你们可以一起煮点东西。
通过使用 WSDL 2.0,您可以定义基于 REST 的 Web 服务。 A定义 REST 服务的示例 WSDL
使用 Woden 或 W3C WSDL Converter - 您可以将 WSDL 1.1 文档转换为 WSDL 2.0。
然而,即使在完成所有这些之后,您仍需要一个转换器(某种 ESB 模式)将这些 REST 调用转换为基于 SOAP 的调用。
我的 2 美分 - 理想的解决方案将涉及编写中间件逻辑(可能在 ESB 上) - 将服务公开为基于 REST 的服务,而提供程序仍然是传统的。
I do not know of a ready made solution that can fit this need.
However, you might cook something together.
With the use of WSDL 2.0 you can define a REST based webservice. A sample WSDL defining a REST service
With use of Woden or W3C WSDL Converter - you can convert a WSDL 1.1 document to a WSDL 2.0.
However, even after doing all of this - you would need a translator (kind of an ESB pattern) to translate these REST calls to SOAP based.
My 2 cents - An ideal solution would involve writing the middleware logic (probably on an ESB) - exposing the service as REST based while the provider is still traditional.
我同意 Nishant 的观点,即 ESB 可以完成这项工作。例如,看看 Mule。 这里有一个您可能感兴趣的论坛讨论。
I agree with Nishant that an ESB could do the job. For example have a look at Mule. Here there is a forum discussion that might interest you.