P
pakalk
Thank you for responses to my first topic. Here is second one.
Code:
my $xmls = new XML::Simple;
my $xml = $xmls->parse_string( $validXmlString );
Problem:
At localhost everything works. At server I get
Can't locate object method "parse_string" via package "XML::Simple"
error message. When I call
print $xmls;
i get
XML::Simple=HASH(0x1d32d8c)
XML::Simple has parse_string subroutine. What can be wrong? Do you
need more information?
Code:
my $xmls = new XML::Simple;
my $xml = $xmls->parse_string( $validXmlString );
Problem:
At localhost everything works. At server I get
Can't locate object method "parse_string" via package "XML::Simple"
error message. When I call
print $xmls;
i get
XML::Simple=HASH(0x1d32d8c)
XML::Simple has parse_string subroutine. What can be wrong? Do you
need more information?