当前位置:   article > 正文

使用PostMan测试WebService接口

postman测试webservice

在这里插入图片描述

  1. 在浏览器中输入 http://ws.webxml.com.cn/WebServices/WeatherWS.asmx?wsdl 查看是否启动服务,确保WS地址可用。通过地址获取获取WSDL地址相关参数,并找空间命名,这个位置是固定的,下面会用到,这里是 http://WebXml.com.cn/
    在这里插入图片描述

  2. 打开postman,新建一个Request请求,填写WSDL地址,直接复制到地址栏中:【http://xxx:xx/xx/xx/xx?WSDL】,其中 "?WSDL"可以不需要,去掉也没有什么关系,但需要把请求方式改为POST方式 ,增加请求头headers参数:Content-Type,其值为text/xml;charset=utf-8,如下图所示:
    在这里插入图片描述

  3. 进入Body框,配置请求内容,选择 raw格式数据、格式内容XM,请求内容严格按照以下格式来编写。

    <soap:Envelope 
        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
        xmlns:xsd="http://www.w3.org/2001/XMLSchema" 
        xmlns:targetNamespace=""
        xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
    
        <soap:Body>
            <targetNamespace:methodName xmlns="">
                <action></action>
                <message></message>
            </targetNamespace:methodName>
        </soap:Body>
    </soap:Envelope>
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13

    其中:

    属性说明
    xmlns:targetNamespace接口中定义的目标名称空间
    targetNamespace:methodName暴露在方法名
    action方法参数
    message方法参数

    当发起无参数请求,如下图所示:
    在这里插入图片描述
    当发起带有参数的请求,如下图所示:
    在这里插入图片描述
    注意:

    • xmlns:targetNamespace 里面地址需要和WebService的命令空间保持一致。
    • 某些情况下,<targetNamespace:getSupportCityString xmlns="">可以<getSupportCityString xmlns="">
  4. 填写后,即可执行,如果请求时,请求成功时,则会返回相应的结果,如下图所示,返回内容有Pretty、Raw、Preview 内容,按自己需要查看。

    在这里插入图片描述

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/从前慢现在也慢/article/detail/702110
推荐阅读
相关标签
  

闽ICP备14008679号