in reply to Re: XML::LibXML - could not create file parser context : no error
in thread XML::LibXML - could not create file parser context : no error
The overall thing happening is , same file is accessed multiple times or parsed multiple times this way over a period of time. I am not sure, if the problems lies here or not. Please revert if more details are required. Thanks, Bala.sub parsexml { my $parser_obj = XML::LibXML->new(); my $doc; my $xml_file = "filename.xml"; $doc = $parser_obj->parse_file($xml_file); my ($xml_node) = $doc->findnodes($xpath); } parsexml(); sleep 30; parsexml(); sleep 30; . . . .
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: XML::LibXML - could not create file parser context : no error
by choroba (Cardinal) on Nov 15, 2013 at 13:54 UTC | |
by Anonymous Monk on Nov 15, 2013 at 14:03 UTC | |
by choroba (Cardinal) on Nov 15, 2013 at 22:26 UTC | |
by rbala (Acolyte) on Nov 17, 2013 at 17:35 UTC | |
by hippo (Archbishop) on Nov 15, 2013 at 22:04 UTC | |
by rbala (Acolyte) on Nov 17, 2013 at 17:07 UTC |