调用webservice服务的xml格式请求报文
解决方法:
总所周知,Web Services 是由xml来定义数据格式的,通过SOAP协议在各个系统平台中传输。
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"><SOAP-ENV:Header/><SOAP-ENV:Body><method:sendMsg xmlns:method="http://juchen.webservice.com/"><username>张三</username><passwd>123456</passwd></method:sendMsg></SOAP-ENV:Body></SOAP-ENV:Envelope>
其中sendMsg是webservice的方法名称,xmlns:method是webservice服务使用的命名空间,username和passwd就是参数名称(按照webservice方法的参数定义)