Is it possible to give path expressions in SAX parser? I have an XML file which has a few same name tags, but they are in different element. Is there any way to differentiate between them. Here is the XML:
<report id="322077">
<update>
<when>1136117311</when>
<what>nobody@mozilla.org</what>
</update>
<update>
<when>1136117422</when>
<what>asqueella@gmail.com</what>
</update>
</report>
<report id="322074">
<update>
<when>1136117311</when>
<what>nobody@mozilla.org</what>
</update>
<update>
<when>1136117422</when>
<what>asqueella@gmail.com</what>
</update>
</report>
<report id="322076">
<update>
<when>1136117311</when>
<what>nobody@mozilla.org</what>
</update>
<update>
<when>1136117422</when>
<what>asqueella@gmail.com</what>
</update>
</report>