我正在向一个带有"SOAPAction urn:abcd“的服务器发送一个请求,当我通过SOAP UI直接将其发送到服务器时,我能够获得输出。但是当我使用WSO2 ESB发送时,我得到了
<SOAP:Envelope SOAP:encodingStyle="urn:asdf" xmlns:SOAP="http://schemas.xmlsoap.org/soap/envelope/">
<SOAP:Body>
<SOAP:Fault>
<faultcode>SOAP:Client</faultcode>
<faultstring>Client Error</faultstring>
<detail xmlns="asdf">
<message>SOAPAction header value must be enclosed in double-quotes</message>
<errortype>HTTPHeaderError</errortype>
</detail>
</SOAP:Fault>
</SOAP:Body>
</SOAP:Envelope>
有什么问题吗?
发布于 2015-07-10 21:28:32
只需给SOAPAction标题加上两个双引号
例如:""urn:getQuote"“
https://stackoverflow.com/questions/31333882
复制相似问题