Re: [xml] DOM parser uses SAX2

2019-11-11 Thread Akash Opensource via xml
On 11/11/2019 11:21, Akash Opensource via xml wrote: > > But while checking libxml2 code I saw the DOM parser making calls to > functions > > in sax2.c . > > The event-based SAX parser is used to build a DOM tree. There's nothing > special about that, just like you c

[xml] DOM parser uses SAX2

2019-11-11 Thread Akash Opensource via xml
Hi All, I have a doubt regarding libxml2 . As I was reading info on XML parsers, I got to know two types DOM and SAX . DOM needs more memory to build the complete DOM tree. However SAX does partial incremental parsing and consumes less memory. But while checking libxml2 code I saw the DOM parser

Re: [xml] Extremely small doubt in libxml2

2019-08-01 Thread Akash Opensource via xml
Hi Daniel, Thanks a lot for the response !! Will debug further .My initial guess was UTF-8 ,4byte version restriction for avoiding range violation, because I am having issues with extended-ascii characters. Thanks for confirming it's not UTF-8 related. Thanks & Regards, Akash On Thu, Aug 1, 2

Re: [xml] Extremely small doubt in libxml2

2019-07-31 Thread Akash Opensource via xml
Can you please help on this. ?? My guess is encoding in UTF-8 On Sun, Jul 28, 2019, 4:31 PM Akash Opensource Hi Veillard and Support Team, > > Thanks for the wonderful code of libxml2 written by you and the team. > It's a boon to software developers and teachers. > > I have a doubt regarding xml

[xml] Extremely small doubt in libxml2

2019-07-28 Thread Akash Opensource via xml
Hi Veillard and Support Team, Thanks for the wonderful code of libxml2 written by you and the team. It's a boon to software developers and teachers. I have a doubt regarding xmlParserInputBufferGrow() function in libxml2. I checked all the latest version of libxml2, but I don't see a explanation