Hi ,
I have an xml which is in the following format.
<root>
<x>
<y>
<uri>ssomeuri</uri>
<date>2012-07-11T10:29:08+00:00</uri>
</y>
</x>
<x>
<y>
<uri>ssomeuri2</uri>
<date>2012-07-11T11:01:08+00:00</uri>
</y>
</x>
</root>
I wanted to get uris in the order of date. I am very new to xpath, can any body help me on this.
the result should be like
ssomeuri2
ssomeuri
Regards
Sri