Re: Fw: RE: [OT] Re: xmlparser simple question

2005-08-24 Thread Anil Pathak
rry, I'm using web mail, and I keep sending responses directly to the > sender by accident. > > Erik > > > -Forwarded Message- > From: [EMAIL PROTECTED] > Sent: Aug 24, 2005 4:26 PM > To: "Gilbert, Antoine" <[EMAIL PROTECTED]> > Subject

Fw: RE: [OT] Re: xmlparser simple question

2005-08-24 Thread erikweber
Sorry, I'm using web mail, and I keep sending responses directly to the sender by accident. Erik -Forwarded Message- From: [EMAIL PROTECTED] Sent: Aug 24, 2005 4:26 PM To: "Gilbert, Antoine" <[EMAIL PROTECTED]> Subject: RE: [OT] Re: xmlparser simple question We

Re: xmlparser simple question

2005-08-24 Thread Greg Reddin
Gilbert, Antoine wrote: I want to read an xml file using a SAXReader combined with a ParserHandler. The file have n o XML root, so I have to find how to add it in the parsing processing. Assuming that the file can be pretty big, how I can do it without at any time having the entire file in memory

RE: [OT] Re: xmlparser simple question

2005-08-24 Thread Gilbert, Antoine
PROTECTED] Sent: August 24, 2005 4:09 PM To: Struts Users Mailing List Subject: [OT] Re: xmlparser simple question Gilbert, SAX works on an event based model. Memory is not an issue unless *you* are caching information as you receive events in your parser handler. The parser starts reading the

[OT] Re: xmlparser simple question

2005-08-24 Thread erikweber
I'm not sure though what you mean by "add the root in the parsing processing". Perhaps you could explain further. Erik -Original Message- From: "Gilbert, Antoine" <[EMAIL PROTECTED]> Sent: Aug 24, 2005 3:59 PM To: Struts Users Mailing List Subject: xmlp

xmlparser simple question

2005-08-24 Thread Gilbert, Antoine
Hi I want to read an xml file using a SAXReader combined with a ParserHandler. The file have n o XML root, so I have to find how to add it in the parsing processing. Assuming that the file can be pretty big, how I can do it without at any time having the entire file in memory ?