Postman 调试 WebService
- WebService
- Postman 设置
- Headers 请求头参数
- Body 请求体传参
- 返回结果
WebService
天气预报 Web 服务
http://www.webxml.com.cn/WebServices/WeatherWebService.asmx?wsdl
直接浏览器大打开,我们测试getWeatherbyCityName
这个功能,下面看关键部分。
<wsdl:definitions ... >
...
<wsdl:types>
<s:schema elementFormDefault&#61;"qualified" targetNamespace&#61;"http://WebXml.com.cn/">...<s:element name&#61;"getWeatherbyCityName"><s:complexType><s:sequence><s:element minOccurs&#61;"0" maxOccurs&#61;"1" name&#61;"theCityName" type&#61;"s:string"/>s:sequence>s:complexType>s:element>...
s:schema>
wsdl:types>
...
Postman 设置
Headers 请求头参数
- 添加&#xff1a;
Content-Type
&#61; text/xml;charset&#61;utf-8
Body 请求体传参
节点内容 | 功能 | 对应上面的 |
---|
getWeatherbyCityName | 方法名 | name&#61;"getWeatherbyCityName" |
http://WebXml.com.cn/ | 名称空间 | targetNamespace&#61;"http://WebXml.com.cn/" |
theCityName | 请求参数 | name&#61;"theCityName" |
长沙 | 参数值 | 要查的城市 |
<soap:Envelope xmlns:soap&#61;"http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi&#61;"http://www.w3.org/2001/XMLSchema-instance"
xmlns:xsd&#61;"http://www.w3.org/2001/XMLSchema"><soap:Body><getWeatherbyCityName xmlns&#61;"http://WebXml.com.cn/"><theCityName>长沙theCityName>getWeatherbyCityName>soap:Body>
soap:Envelope>
返回结果
<soap:Envelope xmlns:soap&#61;"http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi&#61;"http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd&#61;"http://www.w3.org/2001/XMLSchema"><soap:Body><getWeatherbyCityNameResponse xmlns&#61;"http://WebXml.com.cn/"><getWeatherbyCityNameResult><string>湖南string><string>长沙string><string>57679string><string>57679.jpgstring><string>2020/9/16 13:41:56string><string>20℃/23℃string><string>9月16日 小雨转大雨string><string>北风小于3级转3-4级string><string>7.gifstring><string>9.gifstring><string>今日天气实况&#xff1a;气温&#xff1a;23℃&#xff1b;风向/风力&#xff1a;西风 2级&#xff1b;湿度&#xff1a;91%&#xff1b;紫外线强度&#xff1a;最弱。string><string>中国人民保险中暑指数&#xff1a;无中暑风险&#xff0c;天气舒适&#xff0c;令人神清气爽的一天&#xff0c;不用担心中暑的困扰。
健臻·血糖指数&#xff1a;不易波动&#xff0c;天气条件不易引起血糖波动。
穿衣指数&#xff1a;较舒适&#xff0c;建议穿薄外套或牛仔裤等服装。
洗车指数&#xff1a;不宜&#xff0c;有雨&#xff0c;雨水和泥水会弄脏爱车。
紫外线指数&#xff1a;最弱&#xff0c;辐射弱&#xff0c;涂擦SPF8-12防晒护肤品。
string><string>18℃/21℃string><string>9月17日 中雨转小雨string><string>北风3-4级string><string>8.gifstring><string>7.gifstring><string>18℃/21℃string><string>9月18日 小雨转多云string><string>北风小于3级string><string>7.gifstring><string>1.gifstring><string>长沙市位于湖南省东部偏北,湘江下游和长浏盆地西缘。其地域范围为东经111°53′-114°15′,北纬27°51′-28°41′。东邻江西省宜春地区和萍乡市&#xff0c;南接株洲、湘潭两市&#xff0c;西连娄底、益阳两市&#xff0c;北抵岳阳、益阳两市。东西长约230公里&#xff0c;南北宽约88公里。全市土地面积11819.5平方公里&#xff0c;其中城区面积556平方公里。长沙是一座有2000余年悠久文化历史的古城&#xff0c;早在春秋时期&#xff0c;就是楚国雄踞南方的战略要地之一。汉朝的刘邦立国之后&#xff0c;于公元前206年改临江为长沙&#xff0c;并设立汉朝的属国----长沙国&#xff0c;自此之后&#xff0c;长沙开始筑建城墙&#xff0c;并逐渐成为兵家必争之地。长沙属亚热带季风性湿润气候。气候特征是&#xff1a;气候温和&#xff0c;降水充沛&#xff0c;雨热同期&#xff0c;四季分明。长沙市区年平均气温17.2℃&#xff0c;各县16.8℃-17.3℃&#xff0c;年积温为5457℃&#xff0c;市区年均降水量1361.6毫米。景观&#xff1a;岳麓山、桔子洲、天心阁、烈士公园、月亮岛等。string>getWeatherbyCityNameResult>getWeatherbyCityNameResponse>soap:Body>
soap:Envelope>