我使用 curl 向 Web 服务发送 SOAP 请求并使用 shell 脚本获取响应。请在下面找到我正在使用的命令:-
curl -H "Content-Type: text/xml; charset=utf-8" -H "SOAPAction:" -d @sample_request.txt -X POST http://someWebServiceURL
我收到一个错误响应,上面写着没有 SOAPAction 标头。PFB 响应正文部分
<soapenv:Body>
<soapenv:Fault>
<faultcode>Client.NoSOAPAction</faultcode>
<faultstring>WSWS3147E: Error: no SOAPAction header!</faultstring>
</soapenv:Fault>
</soapenv:Body>
任何帮助表示赞赏!