Hi
The following is the XML file
<Students>
<Student id=10>
<name>Steve</name>
<qualification status="failed">Computer Science</qualification>
</Student>
<Student id=9>
<name>John</name>
<qualification status="passed">Computer Graphics</qualification>
</Student>
<Student id=8>
<name>Sarah</name>
<qualification status="passed">Computer Science</qualification>
</Student>
</Students>
So given the above XML file. If the status ="passed" then that particular id of the Student should be fetched into the String variable. Is this possible. Do we have to travel reverse in the XML file. Is this possible. Please Help.