
srikrishnan
Novice
Jan 16, 2009, 8:04 PM
Post #1 of 3
(849 views)
|
|
Doubt in LibXML
|
Can't Post
|
|
Hi All, I have written a script for parsing XML using libxml parser. It works fine. I want to store the xml error messages in a variable. But I am not able to find a way for this, may anybody help me? Below is my script sample: use XML::LibXML; my $parser = XML::LibXML->new(); $parser->validation(1); $parser->load_catalog($catalog_file); $parser->parse_string($xmlstring); Regards, Srikrishnan
|