I'm using SAX to build XML file.
The problem is log : org.xml.sax.SAXParseException: cvc-minInclusive-valid: Value '0' is not facet-valid with respect to minInclusive '1' for type 'positiveInteger'.'
I understand the issue : the value '0' is set where a value >0 is necessary. But, is there a method to know which field is concerned ? My XSD contains more than 10 fields with 'positiveInteger' constraint. I would like to avoid using breakpoints to locate the problem.