XSD validation using Java

I would like to automatically confirm the validity of the XSD schema. Is there a java API or something that you can call automatically for this?

+4
source share
2 answers

This can be done using Xerces. We did this in Apache CXF. The simplest thing is to read the source.

To look only at the subproject that does this, read here .

+1
source

All Articles