我想知道什么是soapAction(url),如果给出的话如下:
<soap:operation soapAction="urn:technicalGetData" style="document"/>
即。 :urn:technicalGetData
无法获取响应&amp;得到错误
string(56) "<faultstring>Failed to submit the response</faultstring>"
我正在使用post方法。
请指导,
由于
更新:(客户端呼叫部分)
curl_setopt($ch, CURLOPT_URL, 'http://blablabla/service');
curl_setopt($ch, CURLOPT_HEADER, 0);
curl_setopt($ch, CURLOPT_HTTPHEADER, array('Content-Type: text/xml; charset=utf-8','SOAPAction: technicalGetData'));
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_VERBOSE, 1); // 1 = for debugging purpose & 0 = production
curl_setopt($ch, CURLOPT_POSTFIELDS, $soaprequest);
$output = curl_exec($ch);