soap和soapenv xml例子
原创
©著作权归作者所有:来自51CTO博客作者chushiyunaaa的原创作品,请联系作者获取转载授权,否则将追究法律责任
soap是这样的:
<soap:Envelope xmlns:soap="http://www.w3.org/2003/05/soap-envelope" xmlns:tem="http://tempuri.org/">
<soap:Header/>
<soap:Body>
<tem:BillnoteClipInitialization>
<tem:json>
{}
</tem:json>
</tem:BillnoteClipInitialization><!-- -->
</soap:Body>
</soap:Envelope>
soapenv是这样的:
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:tem="http://tempuri.org/">
<soapenv:Header/>
<soapenv:Body>
<tem:BillnoteClip>
<tem:json>
{}
</tem:json>
<tem:type>set</tem:type>
</tem:BillnoteClip>
</soapenv:Body>
</soapenv:Envelope>