Re: [xsl] mass validation of xml files

Subject: Re: [xsl] mass validation of xml files
From: Peter Hickman <peter@xxxxxxxxxxxxx>
Date: Thu, 29 Jun 2006 16:52:19 +0100
Georg Hohmann wrote:
Hi,
i got a quick question that is a little bit off topic:
Does anyone know a way or a (free) tool to validate a bunch of xml
files (>30.000) against a DTD or a schema at once?

Regards,
Georg

What do you mean at once? You want to validate 30,000 xml files in parallel, why? For what reason would you want to do this?

However if you really just want to validate a bunch of xml files then you could use something like this (under unix):

for XML in *.xml
do
   xmllint --dtdvalid this.dtd --noout $XML
done

Of course you will need to check the output but the bones of it is there. It also allows you to validate against schema and relaxng.

Current Thread