XML namespace problem
From: timo <timo.talja_at_luukku.com>
Date: Fri, 06 Mar 2009 06:56:40 GMT
Message-ID: <IO3sl.13$Em1.7_at_read4.inet.fi>
Hi all,
[Quoted] [Quoted] I'm facing difficulties with namespaces when reading XML to database; xml is like this;
ABCABC
</blaa>
</test>
Date: Fri, 06 Mar 2009 06:56:40 GMT
Message-ID: <IO3sl.13$Em1.7_at_read4.inet.fi>
Hi all,
[Quoted] [Quoted] I'm facing difficulties with namespaces when reading XML to database; xml is like this;
<?xml version="1.0" encoding="ISO-8859-1"?> <?xml-stylesheet type="text/xsl" href="../oper_fct.xsl"?> <test abc:thisone="O1" xmlns="abc" xmlns:abc="abc"xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="abc ../abc_abc.xsd"> <blaa>
ABCABC
</blaa>
</test>
Problem is to read out that attribute "abc:thisone"; I've tried many ways to
get it in PL/SQL like
....
xlsprocessor.valueof(l_node, '_at_abc:thisone')
...
and I've tried
...
xlsprocessor.valueof(l_node, '_at_thisone')
...
What is the right way to get it ???
Any help would be appreciated,
BR,
Timo
Received on Fri Mar 06 2009 - 07:56:40 CET