in reply to XML::Checker
Looking at the documentation of XML::Checker, I can see why you're confused. ugh. It turns out that XML::Checker::Parser may be a better option. Fortunately, it's much easier:
use XML::Checker::Parser; my $parser = XML::Checker::Parser->new(); eval { $parser->parsefile ("file.xml") };
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: XML::Checker
by aroso (Novice) on Jul 25, 2003 at 09:30 UTC |