我在尝试从SOAP API服务器获取请求时执行以下PHP代码
@H_502_16@try { $soap = new SoapClient($wsdl,$options); $data = $soap->GetXYZ($params); } catch(Exception $e) { $Lastresponse = $soap->__getLastResponse(); }
我得到的只是“看起来我们没有XML文档”的响应代码.
但是当我查看catch块中的$Lastresponse变量时,我发现它如下:
—— = _ Part_1134075_393252946.1482317378966 Content-Type:application / xop xml;字符集= UTF-8; type =“text / xml”< SOAP-ENV:Envelope xmlns:SOAP-ENV =“http://schemas.xmlsoap.org/soap/envelope/”> < SOAP-ENV:页眉/> < SOAP-ENV:身体与GT; ……所有有效数据……< / SOAP-ENV:Body> < / SOAP-ENV:信封> —— = _ Part_1134075_393252946.1482317378966–
注意:我使用的$options参数是:
$options = array( 'uri'=>'http://schemas.xmlsoap.org/soap/envelope/',//'style'=>SOAP_RPC,//'use'=>SOAP_ENCODED,'soap_version'=>SOAP_1_1,'cache_wsdl'=>WSDL_CACHE_NONE,'connection_timeout'=>15,'trace'=>true,'encoding'=>'UTF-8','exceptions'=>true );
虽然我做了一个解析xml的解决方法,但有没有人对这些额外的—–部分位有任何想法?有什么我做错了吗?