一:根据url,方法名,参数访问webService
1.设置url,post格式访问
2.设置Headers
3.设置body,选择row,设置请求头.
<soapenv:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xxx="http://tempuri.org/xxx.xsd" xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/">
<soapenv:Header></soapenv:Header>
<soapenv:Body>
<xxx:checkValue xmlns="http://www.w3.org/2001/XMLSchema">
<sId>123456</sId>
<uId>111111</uId>
</xxx:checkValue>
</soapenv:Body>
</soapenv:Envelope>
4.点击send,进行访问获取结果
5.点击send下的code生成需要的代码:
二:根据url,设置参数访问webService
设置url,以及get访问:
2.设置param:
3.点击send,获取返回数据