On 12/15/05, markharw00d <[EMAIL PROTECTED]> wrote:
> At this stage I am more interested in feedback on parser design/approach

Excellent idea.
While SAX is fast, I've found callback interfaces more difficult to
deal with while generating nested object graphs... it normally
requires one to maintain state in stack(s).

Have you considered a pull-parser like StAX or XPP?  They are as fast
as SAX, and allow you to ask for the next XML event you are interested
in, eliminating the need to keep track of where you are by other means
(the place in your own code and normal variables do that).  It
normally turns into much more natural code.

-Yonik

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to