Coker, Jonathan M wrote:
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?

Off the top of my head, I would say you could just send the file you're parsing, but hopefully you meant something else. Can you describe what you want to do in more detail?

Dave

Reply via email to