WebService是一种跨编程语言和跨操作系统平台的远程调用技术
http://www.oorsprong.org/websamples.countryinfo/countryinfoservice.wso?WSDL 是一个webservices接口,可以查询国家信息
可以用postman进行如下调用:
url填写:http://www.oorsprong.org/websamples.countryinfo/countryinfoservice.wso?WSDL
方法选post
header信息 增加Content-Type项,值为:text/xml
body 填写如下,ContryFlag节点表示查询国旗,CN表示查询,US表示为美国,国家代码是什么,可以通过搜索引擎搜索ContryISOCode获得。
<Envelope xmlns="http://schemas.xmlsoap.org/soap/envelope/"> <Body> <CountryFlag xmlns="http://www.oorsprong.org/websamples.countryinfo"> <sCountryISOCode>CN</sCountryISOCode> </CountryFlag> </Body> </Envelope>
点击发送,返回信息包含查询国家的国旗图片的url, 如:http://www.oorsprong.org/WebSamples.CountryInfo/Images/China.jpg
备注:xml 怎么填写,分4步
1、谷歌浏览器下载插件:Wizdler,这个插件的作用是解析wsdl文件,并生成soap信息
2、浏览器访问地址:http://www.oorsprong.org/websamples.countryinfo/countryinfoservice.wso?WSDL 显示的是xml文档
3、点击Wizdler,弹出查询节点信息,如首都、国旗等
4、选择一个查询项,后会进入一个新的xml页面,如选择CountryFlag后进入的xml页面如下