I have an xml file as follows,
<rss>
<report name="rpt1">
<title>AAA</title>
<image/>
<weblink/>
<pdflink/>
<pdfsize/>
</report>
<report name="rpt2">
<title>BBB</title>
<image/>
<weblink/>
<pdflink/>
<pdfsize/>
</report>
</rss>
I have to traverse the link and go to report nodes and get the title/image/weblink/pdflink/pdfsize for each reports. How can I do that using xml reader. I google and see traversing for a single node but not in loop. Any inputs?