That'd be a better question for a general XML programming discussion...
The simple answer is that data delivered by SAX to an event-handler method
is valid only for the duration of that call. If you want to refer back to
the data later, you're responsible for copying it out and storing it
someplace else. The advantage is that you can copy only what you need to
retain; the disadvantage is that you MUST copy what you need to retain.
An alternative, of course, would be to use a DOM parser.
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]