从 WSDL 生成 RESTful 代理

发布于 2024-11-10 03:25:15 字数 163 浏览 2 评论 0原文

假设我获得了某些 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 技术交流群。

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

发布评论

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

评论(2

第七度阳光i 2024-11-17 03:25:15

我不知道有什么现成的解决方案可以满足这种需求。

不过,你们可以一起煮点东西。

通过使用 WSDL 2.0,您可以定义基于 REST 的 Web 服务。 A定义 REST 服务的示例 WSDL

使用 WodenW3C 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.

不乱于心 2024-11-17 03:25:15

我同意 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.

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