vote up -1 vote down star
1

The XML2JSON package is not getting loaded when I execute my program. I'm getting the following error:

 Can't locate object method "new" via package "XML::XML2JSON" (perhaps you forgot
  to load "XML::XML2JSON"?) at jsontoxml.pl line 6.
flag
Please reduce your code to the smallest script that still exhibits the problem and post that. – Sinan Ünür Oct 20 at 13:04
And, please do not forget to include OS/platform details. If you are not willing to do that, I will recommend search.cpan.org/perldoc/Acme::ESP – Sinan Ünür Oct 20 at 13:08
2  
@Kinopiko The question has two parts: 1) Why do I get the error message? Well, both the error message and you post answer that part: Because Meteor did not use XML::XML2JSON; Meteor could have realized this if he had tried to come up with the shortest script that still exhibited the problem. 2) How to install XML2JSON package? For this part, the most useful answer (be it use ppm or use pacman or use cpan) depends on the OS/platform information. – Sinan Ünür Oct 20 at 13:57
1  
@Meteor You should get a book. You should read the Perl documentation installed on your computer from start to finish before diving in to things like XML and JSON. For your own good. – Sinan Ünür Oct 20 at 13:58
1  
I agree with Sinan - even though the problem is obvious to us, it is still useful to make the OP go through the steps to figure it out for himself. An old coworker once said: "Give a man some fish, and he's gonna come back tomorrow and ask for more again and again and again until you finally take the f***ing hint and start coming across with the fish" – Ether Oct 20 at 15:12
show 1 more comment

2 Answers

vote up 1 vote down

Do you have a line

 use XML::XML2JSON;

in your program? Did you install the software OK?

link|flag
Ya ..I had installed XML2JSON and the following is the code i am trying to execute:- use XML::XML2JSON; my $JSON ='{"name":"Douglas Crockford","phone":"555 123 456"}'; my $XML2JSON =XML::XML2JSON->new(); my $Obj = $XML2JSON->json2obj($JSON); my $XML = $XML2JSON->obj2xml($Obj); print $XML; – Meteor Oct 21 at 9:08
vote up 0 vote down

Check that you can use the XML::XML2JSON module from the command line

perl -MXML::XML2JSON

If that gives error messages, then the module isn't installed properly. If it doesn't then there's some fault either with your script or the way you're executing it.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.