我正在尝试将此 SOAP 信封转换为通过DHC Restlet(或任何其他引擎)发送的 http POST 请求。
肥皂信封
<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 但响应为空。
我会错过什么?