SOAP 消息的调试抓取
使用 Postman 测试 WebService 接口
request
1 | <soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" |
response
1 | <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"> |
SoapUI 工具测试 WebService 接口
SoapUI Pro 是需要付费的,对于日常的测试,开源版的功能已经够用了。这里把两个版本的下载地址都分享一下:
-
SoapUI Pro破解版下载地址:https://pan.baidu.com/s/1LyZQYoIxLqbGRAnB8PBJuQ (密码:epyh)
-
SoapUI Open Source下载地址:https://www.soapui.org/downloads/soapui.html
开源版进入页面后点击 Download SoapUI Open Source 即可进行下载。
操作如图下:
WSDL 文件解析
wsdl 报文总体概述
1 | <definitions> |
wsdl:definitions
1 | <wsdl:definitions xmlns:xsd="http://www.w3.org/2001/XMLSchema" |
标签 | 描述 |
---|---|
name | 我们 java 程序中服务接口的实现类,SEI 定义是:服务接口类 + Service 后缀,Service 自动追加 |
targetNamespace | 命名空间: 相当于 Java 里面的 package 它刚好是和我们 Java 定义中的包名相反 |
其它 | 不变化,不关心 |
xmlns:tns | 相当于 Java 里面的 import, 包名反转 |
wsdl:types
我们 java 定义的服务接口中某方法的输入参数和返回值。
wsdl:message
通信消息的数据结构的抽象类型化定义。使用 Types 所定义的类型来定义整个消息的数据结构。
WebService 中每个方法包含两部分:
- 一个是方法的输入参数;另一个是方法的输出参数。
- 其实质都是基于 SOAP 协议将其封装为消息,所以每一个方法对应有两个消息,一个输入一个输出回应。简单而言,就是方法和 message 的关系是 N:2N 的关系,一对二。
- message 中的具体内容是 part,结合前面可知,message 中的 part 内容请到前面定义过的 types 中去看,它会引用之前的 type 相关内容。
wsdl:portType
- portType:接口
- operation:接口中定义的方法
wsdl:binding
特定端口类型的具体协议和数据格式规范的绑定:
wsdl:service
负责将网络通信地址赋给一个具体的绑定:
参考:https://blog.csdn.net/hgx_suiyuesusu/article/details/88918192
If you like this blog or find it useful for you, you are welcome to comment on it. You are also welcome to share this blog, so that more people can participate in it. If the images used in the blog infringe your copyright, please contact the author to delete them. Thank you !