Use postman to call the Webservice interface

1. First access your webService address in the browser address bar

Address format: http://127.0.0.1:8092/xxxx/ws (this is your own decision)/xxxxXccv?wsdl
 

2. post man POST access wwebService interface

Address format: http://127.0.0.1:8092/xxxx/ws (this is your own decision)/xxxxXccv

<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:pm="http://xxx.xxxxx.ws.xxxxx.xxxxxx.com">
   <soapenv:Header/>
   <soapenv:Body>
      <pm:暴漏的方法>
          <message>
           <![CDATA[
            {"k1":"v1","k2":"v2"}
         ]]>
          </message>
      </pm:暴漏的方法>
   </soapenv:Body>
</soapenv:Envelope>

Guess you like

Origin blog.csdn.net/u010952056/article/details/133679467