3

任何建议如何解析此 SOAP 响应并获取 的namereport_type?请注意,有两个名称实例;一个下一个report_typeseverity

这是 SOAP 响应

<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/">
   <soapenv:Body>
      <ns1:getIRResponse xmlns:ns1="http://ws.icontent.idefense.com/V3/2">
         <ns1:return xsi:type="ns1:IRResponse" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
            <ns1:report_type>
               <ns1:id>0</ns1:id>
               <ns1:name>Original Vulnerability</ns1:name>
            </ns1:report_type>
            <ns1:severity>
                <ns1:id>0</ns1:id>
                <ns1:name>HIGH</ns1:name>
            </ns1:severity>
         </ns:return>
      </ns1:getIRResponse>
   </soapenv:Body>
</soapenv:Envelope>

这是我正在使用的 PHP 代码:

<?php        
    $xml = simplexml_load_string($response);    
    $xml->registerXPathNamespace('ns1', 'http://ws.icontent.idefense.com/V3/2');

    foreach ($xml->xpath('//ns1:report_type/name') as $item)
    {
        echo 'Name: '.$item,'<br>';               
    } 
?>

PHP 代码不回显任何内容。当我使用($xml->xpath('//ns1:name') as $item)它时,它会返回两个名称(原始漏洞和高)。

我知道我错过了一些愚蠢的东西。你能帮忙吗?先感谢您!

4

1 回答 1

5

首先,我已经更正了这个元素

</ns:return>

并将其更改为

</ns1:return>

通过在两个 xpath 段中复制命名空间前缀,我似乎得到了你想要的结果

$xml = simplexml_load_string($response);    
$xml->registerXPathNamespace('ns1','http://ws.icontent.idefense.com/V3/2');
foreach ($xml->xpath('//ns1:report_type/ns1:name') as $item)
{
  echo 'Name: '.$item,'<br>';
}            

输出

Name: Original Vulnerability
于 2012-11-19T22:03:03.610 回答