in reply to Re: Doctype specific XML Validator
in thread Doctype specific XML Validator

XML::Parser makes sure that a document is well-formed, but not necessarily valid. You need something like XML::Checker for that, which is built on top of XML::Parser, but does the extra validation.

-- Randal L. Schwartz, Perl hacker