使用带有 Javascript 的 Liferay 服务?
我需要使用 JavaScript 从 Liferay 服务器检索一些信息。 我在 Liferay 中构建了一个服务,这样我就可以生成对 wsdl 文件的 SOAP 请求并检索我需要的数据。这对于 SOAP 客户端来说效果很好。
在 Javascript 中生成这些 SOAP 请求的最简单方法是什么?
我已经尝试使用 Javascript SOAP Client 但我总是收到错误“wsdl为空”。据开发人员称,发生这种情况是因为服务器无法执行 ASP.NET Web 服务。 有谁知道一个简单的替代方案吗?
I need to retrieve some information from a Liferay server with Javascript.
I build a service in Liferay so I can generate SOAP requests to the wsdl file and retrieve the data I need. That works well with a SOAP client.
What is the easiest way to generate these SOAP requests in Javascript?
I already tried to use the Javascript SOAP Client but I always get the error "wsdl is null". According to the developer this happens because the server isn't able to execute ASP.NET webservices.
Does anyone know an easy alternative to this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我会选择 REST Web 服务,它是 JS Web 服务客户端的事实上的标准。
关于格式,请记住您可以使用 XML 或 JSON。
I would go with REST web services, it is the de-facto standard for JS web service clients.
About the format remember that you may go with XML or JSON.