in reply to Re: XMLin error while parsing
in thread XMLin error while parsing
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.