trying to extract all the child nodes where the rootnode is called "Abc"
xml:
<role>
<name>"ABC"</name>
<values id=1>
<value>123</value>
<stuff>asdasdasd</stuff>
</values>
<values id=2>
<value>123</value>
<stuff>asdfdffsdfsdasdasd</stuff>
</values>
</role>
how can I use XPath to return me all nodes from a root node called "ABC"?
