in reply to Re^2: Best XML library to validate XML from untrusted source
in thread Best XML library to validate XML from untrusted source
I have no idea why you wouldn't recommend
use XML::LibXML::Reader qw( ); my $reader = XML::LibXML::Reader->new( location => $file_or_url, load_ext_dtd => 0, expand_entities => 0, ); 1 while $reader->read;
Wrapping this up just so you get something you can call higher-level simply is pure waste.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^4: Best XML library to validate XML from untrusted source
by Jenda (Abbot) on Oct 20, 2014 at 20:15 UTC | |
by ikegami (Patriarch) on Oct 21, 2014 at 17:17 UTC |