我正在尝试将SOAPAction添加到我的SOAP Web请求中。
以下是我的代码:
return (TPResponse) getWebServiceTemplate().marshalSendAndReceive(genTP, message -> {
((SaajSoapMessage)message).setSoapAction("http://tempuri.org/GenerateParam");
});
期望此代码应在我的HTTP请求中添加单独的标头字段SOAPAction: "http://tempuri.org/GenerateParam"
。但以下是最终数据包的形成:
POST /myscripts/script.php?somedetails HTTP/1.1
Accept-Encoding: gzip
Accept: application/soap+xml, text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2
Content-Type: application/soap+xml; charset=utf-8;
action="http://tempuri.org/GenerateParam"
Cache-Control: no-cache
Pragma: no-cache
User-Agent: Java/1.8.0_73
Host: 127.0.0.1
Connection: keep-alive
Content-Length: 578
请注意,它不是添加单独的HTTP标头,而是修改Content-Type
并在其中添加action
值。可能有什么不对?
答案 0 :(得分:0)
发现了这个问题。我刚刚将SaajSoapMessageFactory
的肥皂协议从SOAP_1_2_PROTOCOL
更改为SOAP_1_1_PROTOCOL
,它开始正常运行。