Hello,
I am parsing a file with data of the form
<DataStream>
<PlayerData id = "1">
<x>100</x>
<y>50</y>
<z>75</z>
</PlayerData>
<PlayerData id = "2">
<x>100</x>
<y>50</y>
<z>75</z>
</PlayerData>
.
.
.
.<DataStream> with PlayerData repeated over and over. I would like to use SAX to parse it but retain the original XML to send elsewhere. Is this possible? Thank you
