Re: What is the most efficient way to use SAX?
Posted By:
Bozidar_Dangubic
Posted On:
Monday, May 13, 2002 05:41 AM
I am unclear about what you are trying to do with global booleans and why would you ever need them. in SAX, XML file is parsed sequentually and is event-based. so while you parse, certain events will occur and SAX parser will give you a notification via callbacks that certain event has occurred. I do not see a reason why you would need global booleans? so please try to explain exactly what it is that you are trying to do and perhaps we will be able to help you then.