我正在使用NuSoap进行网络服务。作为回应,我得到了带有名称空间的xml:
<s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/">
<s:Header>
<Action xmlns="http://schemas.microsoft.com/ws/2005/05/addressing/none" s:mustUnderstand="1">ABC.CS.Ia.Cts.Ees.Au/IAuth/A</Action>
</s:Header>
<s:Body>
<A xmlns="ABC.CS.Ia.Cts.Ees.Au">
<Au xmlns:d1="ABC.CS.Ia.Cts.Ees.Au" xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
<d1:Res>Q1</d1:Res>
<d1:n>jFn</d1:n>
</Au>
</A>
</s:Body>
</s:Envelope>
$ xml_feed = simplexml_load_string($ xmlString);
现在我要解析它。我使用了simplexml_load_string函数,但是获得了警告,函数没有返回任何内容。
警告:simplexml_load_string()[function.simplexml-load-string]:实体:第7行:解析器警告:xmlns:URI BC.CS.Ia.Cts.Ees.Au在C:中不是绝对的第38行的xampp \ htdocs \ test.php 警告:simplexml_load_string()[function.simplexml-load-string]:在第38行的C:\ xampp \ htdocs \ test.php中 警告:simplexml_load_string()[function.simplexml-load-string]:^在第38行的C:\ xampp \ htdocs \ test.php
如果有人知道,请帮助我。
-itin
答案 0 :(得分:1)
看起来您没有正确访问XML对象,此函数将正确检索xpath子项:
function parseSOAPXmlTest($str) {
//parse xml
$xml = simplexml_load_string($str);
echo "xml=" . print_r($xml, true);
if( $xml === false ) { throw new Exception("OBJ is malformed!"); }
foreach($xml->xpath('//s:Header') as $header) {
if( empty($header) ) { throw new Exception("Header is malformed or missing!"); }
echo "header=" . print_r($header, true);
}
foreach($xml->xpath('//s:Body') as $body) {
if( empty($body) ) { throw new Exception("Body is malformed or missing!"); }
echo "body=" . print_r($body, true);
foreach($body->A->Au->xpath('//d1:Res') as $Reschild) {
echo "Reschild=" . print_r($Reschild, true);
}
foreach($body->A->Au->xpath('//d1:n') as $nchild) {
echo "nchild=" . print_r($nchild, true);
}
}
}
答案 1 :(得分:0)