Mario Madunic wrote:
Hi,I'm using the following to validate thousands of XML files and want to move off any that are invalid to another folder for further parsing or update XSLT. <schemavalidate noNamespaceFile="../articleObject.xsd" failonerror="false"> <fileset dir="${l_Drive}XML/finished" includes="Article-*.xml"/> </schemavalidate> Any help will be appreciated. Thanks Marijan (Mario) Madunic
There's nothing like that, I'm afraid. The use case was "make sure all the XML in a project is valid, halt if one fails".
I'm trying to think how you'd do it other ways. You could always write a new resource <validxml> and <invalidxml> that would combine a fileset with the validation, but you'd get deep in to ant coding that way
-- Steve Loughran http://www.1060.org/blogxter/publish/5 Author: Ant in Action http://antbook.org/ --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
