gpt4 book ai didi

xml - 在 xml 中使用命名空间时如何通过 xmltable 解析 xml(Oracle)

转载 作者:数据小太阳 更新时间:2023-10-29 02:02:54 28 4
gpt4 key购买 nike

I want to parse a xml string that is a web service response sent from servier, the xml looks like this:

<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<soap:Body>
<addResponse xmlns="http://tempuri.org/">
<addResult>20</addResult>
</addResponse>
</soap:Body>
</soap:Envelope>

我想获取元素 addResult 之间的值 20。我的 plsql 代码段如下所示:

declare
v_xml clob;
begin
v_xml := '<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<soap:Body>
<addResponse xmlns="http://tempuri.org/">
<addResult>20</addResult>
</addResponse>
</soap:Body>
</soap:Envelope>';
for c in (select results
from xmltable('Envelope/Body/addResponse' passing xmltype(v_xml)
columns results varchar(100) path './addResult')
)
loop
dbms_output.put_line('the result of calculation is : ' || c.results);
end loop;
end;

seems that nothing was printed out, but if I remove the namespace 'soap', the code works well, so can anybody tell me how can I got the value 20 when the xml has namespace?

最佳答案

基于 this answer

应该是这样的:

declare    
v_xml clob;
begin
v_xml := '<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<soap:Body>
<addResponse xmlns="http://tempuri.org/">
<addResult>20</addResult>
</addResponse>
</soap:Body>
</soap:Envelope>';
for c in (select results
from xmltable(xmlnamespaces(default 'http://tempuri.org/',
'http://schemas.xmlsoap.org/soap/envelope/' as
"soap" ),
'soap:Envelope/soap:Body/addResponse' passing
xmltype(v_xml) columns results varchar(100) path
'./addResult')) loop
dbms_output.put_line('the result of calculation is : ' || c.results);
end loop;
end;

关于xml - 在 xml 中使用命名空间时如何通过 xmltable 解析 xml(Oracle),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22219076/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com