【发布时间】:2016-10-04 15:10:23
【问题描述】:
我正在尝试将此 SOAP 信封转换为 http POST 请求以通过 DHC Restlet(或任何其他引擎)发送。
肥皂信封
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xx="http://xx.webservice.company.com/">
<soapenv:Header/>
<soapenv:Body>
<xx:MyMethodName>
<!--Optional:-->
<firstParameter>xx</firstParameter>
<!--Optional:-->
<secondParameter>zz</secondParameter>
</xx:MyMethodName>
</soapenv:Body>
</soapenv:Envelope>
DHC 实施
我得到 200 OK 但响应为空。
我可能会错过什么?
【问题讨论】: