有关如何解析此SOAP响应并获取name
的{{1}}值的任何建议吗?请注意,有两个名称实例;一个在report_type
下,另一个在report_type
下。
这是SOAP响应
severity
这是我正在使用的PHP代码:
<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>';
}
?>
时,它会返回两个名称(原始漏洞和HIGH)。
我知道我错过了一些愚蠢的东西。你能帮帮忙吗?提前谢谢!
答案 0 :(得分: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