Hi,
Unfortunately the supported version in XPath node is XPath 1.0 which does not support this format:
/root/item/*/name()
Which in XPath 2.0 will output the sequence of the names of the elements following the “item” element.
In XPath 1.0 you can get the name of 1 element using this:
name(/root/item/*[1])
I have already requested the feature to have the XPath node with version 2.0.
Or maybe I’m missing something at all?!
Best,
Armin
P.S. Resources: