Home
Just a hint how to validate XML Schema xsd under linux
Just a hint how to validate XML Schema xsd under linux
November 2009
Its really basic stuff but worth to remember that you can easily validate XML Schema under linux command line with xmllint. It can be especially useful if you have to automate some xml files validation in crons etc.
xmllint --schema /path/to/schema.xsd /path/to/sample.xml
This will show you list of validation errors or a success message.
Comments
Thanks for the tip, really
Thanks for the tip, really appreciate it :).
Post new comment