如何测试 WSDL
如何进行 WSDL 测试? 什么是 WSDL 模式验证。 是否有任何开源工具或 API 可以实现相同的目的?
How to do WSDL testing? What is Schema Validation of WSDL. Any open source tool, or any API's available to achieve the same?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果我想验证 WSDL 文件,那么我使用 Eclipse + Web Tools 插件。 有 WSDL 编辑器和验证器。 如果我想同时作为客户端和服务器测试 WSDL,那么我会使用soapUI。 有 wsdl 导入,之后您可以查询真正的 WebService 或者是否可以创建“模拟”响应。 这两种工具都是免费的。
If I want to verify WSDL file then I use Eclipse + Web Tools plugin. There is WSDL editor and validator. If I want to test WSDL both as client and server then I use soapUI. There is wsdl import and after that you can query real WebService or if you can create "mock" response. Both tools are free.
WS-I 组织 (http://www.ws-i.org/) 发布BSP 1.0 测试工具 (http://www.ws-i.org /deliverables/workinggroup.aspx?wg=testingtools),它根据 WS-I 基本概要文件验证 WSDL。 这是一个 Web 服务互操作性标准。
MM
The WS-I organization (http://www.ws-i.org/) publishes the BSP 1.0 Testing Tools (http://www.ws-i.org/deliverables/workinggroup.aspx?wg=testingtools) which validates WSDL against the WS-I Basic Profile. This is a web service interoperability standard.
jMM