I have this sample XML:
<Values>
<TraceSet Name = "EVT1.Val" QuerySpecName="EVT1" >
<Events>
<Properties>
<Property Descriptor="100">1406538933</Property>
<Property Descriptor="2000">My second value</Property>
</Properties>
</Events>
<TraceSet Name = "EVT2.Val" QuerySpecName="EVT2" >
<Events>
<Properties>
<Property Descriptor="100">1406538922</Property>
<Property Descriptor="2000">My first value</Property>
</Properties>
</Events>
</Values>
I am trying to iterate at the Property Descriptor = 2000 level, sorting by Property Descriptor = 100 (UTC Seconds) but I can'[t find a way to do it in XPath 1.0.
The result should be:
My first value
My second value
Is there a way of comparing ALL UTC seconds in this structure and show the respective values in order?