in reply to XMLin error while parsing

It probably means that your data file isn't valid XML, and that a tag is closed by a different tag, something like
<foo></bar>

Replies are listed 'Best First'.
Re^2: XMLin error while parsing
by Anonymous Monk on Oct 13, 2010 at 14:27 UTC
    I've found that problem is related with SAX library, I have solved just telling XML::Simple to use another XML library to parse the XML, using the following line:

    $XML::Simple::PREFERRED_PARSER='XML::Parser';

    You will need the XML::Parser library, but it's usually installed when install XML::Simple.