in reply to Validating XML against a DTD

Howdy!

CPAN is your friend.

One approach (there may be more than one) is to use XML::LibXML, with particular attention to XML::LibXML::Dtd to parse a DTD and XML::LibXML::Document to validate (particularly the is_valid and validate methods).

This took me just a few minutes to look up...

yours,
Michael

Replies are listed 'Best First'.
Re^2: Validating XML against a DTD
by JediWizard (Deacon) on Sep 17, 2004 at 15:33 UTC

    Thank you very much Micheal. CPAN is my friend, but I suppose I was imply not using the right search string, or just missed the module. I'll check out XML::LibXML.

    Thanks, again

    May the Force be with you