Hi!
how do I validate the xml file against a dtd.
I mean ok I am using
my $testdoc = XML::LibXML->new->parse_string($file2parse);
but this only checks for well formedness.
If I have a dtd test.dtd against which I want to validate $testdoc how do I do it?
Thanks in advance.