如何从 WSDL 文件生成 gwt 类
可能的重复:
GWT 和 Web 服务 (wsdl)
我有一个项目,包含 Apache CXF Web 服务和 Spring 3.0服务器端。我在客户端使用 gwt 框架,我想从 gwt 直接调用我的 Web 服务。所以我需要一个生成器来从 wsdl 生成 gwt 客户端代码。有没有任何解决方案或技术来生成 gwt 类?
Possible Duplicate:
GWT and WebServices (wsdl)
I have a project which contains Apache CXF web service and Spring 3.0 on the server side. I use gwt framework at client side and i want to call directly my web service from gwt. So i need a generator to generate gwt client side code from wsdl. Is there any solution or technic to generate gwt classes?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
没有内置或受支持的标准解决方案用于从客户端 GWT 调用 SOAP 服务。您可以查看这个问题,但似乎没有任何简单的答案。最标准和受支持的解决方案是与 SOAP 接口一起开发 GWT 服务器端接口。
There is no built in or supported standard solution for calling SOAP services from client side GWT. You could look at this question but there don't seem to be any easy answers. The most standard and supported solution would be to develop a GWT server-side interface alongside your SOAP interface.