S
sobczyk.wojciech
I have XML:
<xml xmlns="http://abc">
<A t="ttt"></A>
<B xmlns="http://qwerty"><X>aaaa</X></B>
</xml>
How to point node "B" with XPath without any changes in this xml?
node A is pointed like this without any problem: /xml/A
but /xml/B points nothing. When remove xmlns="http://qwerty" it works!
Unfortunately I can't do any modification in this xml and add
namespace alias: xmlns:alias1="http://qwerty"
<xml xmlns="http://abc">
<A t="ttt"></A>
<B xmlns="http://qwerty"><X>aaaa</X></B>
</xml>
How to point node "B" with XPath without any changes in this xml?
node A is pointed like this without any problem: /xml/A
but /xml/B points nothing. When remove xmlns="http://qwerty" it works!
Unfortunately I can't do any modification in this xml and add
namespace alias: xmlns:alias1="http://qwerty"