in reply to Re: XML::Parser query
in thread XML::Parser query

Seems like problem is not size, the content of a single element is causing two successive calls to the character handler each with a part of the complete string. And surprisingly i am parsing approx 3000 lines and it split only on 1 line and that causes wrong argument pass to the next program and my program dies. Do you have any idea about that?Thanks for all your reply.

Replies are listed 'Best First'.
Re: Re: Re: XML::Parser query
by mirod (Canon) on Apr 16, 2001 at 01:35 UTC

    This is a documented behaviour of XML::Parser. Please read the docs. Due to its buffering strategy this can happen.

    See the review (XML::Parser) for a way to cope with it.