Sequential reading of XML file
I have a XML file like:
<Element id="test1" type="functional">
<description>description of this test</description>
<steps>Steps </Steps>
<action name="name1" value="value1"/>
</Element>
I want to read this file sequentially and perform do something for each node.
I saw various classes in Java that deals with XML. Which classes will be best suitable for my case? Any examples will be of great help.
Thanks in advance,
-vc

