samurai_from_india has asked for the wisdom of the Perl Monks concerning the following question:
I am using XML::Simple module. my script is running fine.
but I am not able to make out why the Following error is
coming.
could not find ParserDetails.ini
in /usr/lib/perl5/vendor_perl/5.8.1/XML/SAX
There is no file called ParseDetails.ini in that location.
i have installed the XML::Simple perl module reading the
instructions given in install file.
Do I need to install anything else to get rid of these
error?
Regards
-----------------------------------------------------------
This is my piece of code.
#!/usr/bin/perl
use strict;
use Data::Dumper;
use XML::Simple;
my $config=XMLin('datadump.xml');
print Dumper($config);
-----------------------------------------------------------
Output :
perl datadump.pl
could not find ParserDetails.ini
in /usr/lib/perl5/vendor_perl/5.8.1/XML/SAX
$VAR1 = {
'to' => 'Tove',
'heading' => 'Reminder',
'body' => 'Don\'t forget me this weekend!',
'from' => 'Jani'
};
-----------------------------------------------------------
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: could not find ParserDetails.ini
by AcidHawk (Vicar) on Apr 22, 2004 at 11:37 UTC | |
by gunnalag (Initiate) on Jan 14, 2011 at 15:15 UTC |