1:点击SOAP(O)下的创建新的soap请求
2:选择本地的.wsdl文件或者 远程的web服务
3:设置发送信息
将所要发送的xml文件配置
将 <![CDATA[ 所要发送的xml参数 ]]> 代替String
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<SOAP-ENV:Body>
<m:excute xmlns:m="http://gd.ct10000.com.cn">
<m:in0>String</m:in0>
</m:excute>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
4:向web服务发送请求