PHP解析SOAP响应问题-SimpleXMLElement
我在使用PHPSimpleXMLElement
和simpleSMLToArray()
函数解析SOAP响应时遇到问题。我可以很好地从我的Soap服务器获得Soap响应。在本例中,我同时编写了SOAP客户端和服务器。我正在使用NuSoap作为服务器。在我看来,SOAP响应看起来很完美,但PHP5 SOAP客户端似乎不能解析它。因此,和过去一样,我使用SimpleXMLElement
和PHP.NET(http://php.net/manual/en/book.simplexml.php)中的函数simpleXMLToArray()
,但似乎无法获取数组。
<SOAP-ENV:Envelope SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/" xmlns:tns="urn:eCaseWSDL">
<SOAP-ENV:Body>
<ns1:registerDocumentByPatientResponse xmlns:ns1="urn:eCaseWSDL">
<returnArray xsi:type="tns:ReturnResult">
<id xsi:type="xsd:int">138</id>
<method xsi:type="xsd:string">registerDocumentByPatient</method>
<json xsi:type="xsd:string">0</json>
<message xsi:type="xsd:string">success</message>
<error xsi:type="xsd:string">0</error>
</returnArray>
</ns1:registerDocumentByPatientResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
我的类中的PHP代码($This引用适用于我的库代码)。
// Define SimpleXMLElement
$xml_element = new SimpleXMLElement($response_string); // SOAP XML
$name_spaces = $xml_element->getNamespaces(true);
var_dump($name_spaces);
$soap = $xml_element->children('ns1');
var_dump($soap);
$soap_array = $this->simpleXMLToArray($soap);
var_dump($soap_array);
return $soap_array;
我可以看到名称空间;ns1等,但不会返回数组。SimpleXMLElement
看起来像是在返回对象,但它是空的。
<pre>array(3) {
["SOAP-ENV"]=>
string(41) "http://schemas.xmlsoap.org/soap/envelope/"
["ns1"]=>
string(13) "urn:eCaseWSDL"
["xsi"]=>
string(41) "http://www.w3.org/2001/XMLSchema-instance"
}
object(SimpleXMLElement)#23 (0) {
}
bool(false)
有人知道我做错了什么吗?我今天早上一定是咖啡喝得不够多。我很想用正则表达式来解析它。
解决方案
SimpleXML创建一个树对象,因此您必须沿着该树找到所需的节点。
另外,访问时必须使用实际的命名空间URI,例如:urn:eCaseWSDL
而不是ns1
:
试试:
$soap = $xml_element->children($name_spaces['SOAP-ENV'])
->Body
->children($name_spaces['ns1'])
->registerDocumentByPatientResponse
->children();
var_dump((string)$soap->returnArray->id); // 138
相关文章