作者热门文章
- android - RelativeLayout 背景可绘制重叠内容
- android - 如何链接 cpufeatures lib 以获取 native android 库?
- java - OnItemClickListener 不起作用,但 OnLongItemClickListener 在自定义 ListView 中起作用
- java - Android 文件转字符串
我正在尝试将此 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>
我收到 200 OK,但响应为空。
我可能遗漏了什么?
最佳答案
虽然我们可以从 GET
请求中获得结果,但是如果您的服务器使用 ,则无法
背后的架构。POST
JSON
请求>SOAP
解决方案是使用 XML 和以下 header 参数POST
SOAP
封装:
Content-Type : text/xml; charset=utf-8
SOAPAction : (empty)
关于rest - 如何将 SOAP 信封转换为 JSON?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39855894/
我是一名优秀的程序员,十分优秀!