Hi All,
I have a scenario where I want to get the distinct nodes from XML.
So if I have this XML:
<person>
<age>
<year value="2010"/>
<month value="10"/>
<day value="21"/>
</age>
<age>
<year value="2011"/>
<month value="11"/>
<day value="4"/>
</age>
</person>
How could I retrieve in the results:
person
age
year
month
day
Is this possible? I was playing around with nodes.query and nodes.value, but I couldn't seem to figure out how to extract the actual node values?
Thanks,
S