在 Groovy 中访问 WSDL Web 服务有哪些好的选择?
从 Groovy 访问使用 WSDL 定义的 Web 服务有哪些好的选择?我看过 groovyws ,虽然它似乎可以正常工作,但我遇到了一些问题复杂的WSDL在传递。它似乎也不再处于积极开发之中。是否有其他好的 Groovy 选项用于访问 Web 服务,或者我应该选择一个 Java API 并通过 Groovy 调用它?
What are good options for accessing Webservices that are defined with WSDL from Groovy? I've looked at groovyws and while it appears to work ok for basic stuff I've run into issues with complex WSDL in the passed. It also appears to no longer be under active development. Are there any other good Groovy options for accessing webservices or should I just pick a Java API and call it through Groovy?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我目前正在使用 GroovyWS,但尚未找到替代方案。如果 GroovyWS 能够解析 WSDL,那么它似乎工作得很好。在它无法解析 WSDL 的情况下,我完全切换了服务 API。
I'm currently using GroovyWS, and haven't found an alternative. If GroovyWS manages to parse the WSDL, it seems to work nicely enough. In the case where it wouldn't parse the WSDL, I switched service APIs completely.