什么是soapAction哪个有骨灰盒?

时间:2013-06-05 05:12:58

标签: php soap soap-client

我想知道什么是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);

0 个答案:

没有答案