[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message]

RE: mass validation of xml files

Subject: RE: mass validation of xml files
From: "Marijan Madunic" <mmadunic@xxxxxxxxxxxxxxxxxxx>
Date: Thu, 29 Jun 2006 13:59:19 -0700
marijan madunic
I'd use ant if you have it set up and the basic method is below

<target name="validateXML">
<xmlvalidate lenient="no" warn="yes"
classname="org.apache.xerces.parsers.SAXParser" failonerror="no">
<fileset dir="path to file" />
</xmlvalidate>
</target>

Marijan Madunic


-----Original Message-----
From: Peter Hickman [mailto:peter@xxxxxxxxxxxxx]
Sent: Thursday, June 29, 2006 8:52 AM
To: xsl-list@xxxxxxxxxxxxxxxxxxxxxx
Subject: Re:  mass validation of xml files

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

PURCHASE STYLUS STUDIO ONLINE TODAY!

Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced!

Buy Stylus Studio Now

Download The World's Best XML IDE!

Accelerate XML development with our award-winning XML IDE - Download a free trial today!

Don't miss another message! Subscribe to this list today.
Email
First Name
Last Name
Company
Subscribe in XML format
RSS 2.0
Atom 0.3
Site Map | Privacy Policy | Terms of Use | Trademarks
Free Stylus Studio XML Training:
W3C Member
Stylus Studio® and DataDirect XQuery ™are products from DataDirect Technologies, is a registered trademark of Progress Software Corporation, in the U.S. and other countries. © 2004-2013 All Rights Reserved.