How is validate parsing and processing XML, Schema, and Schematron. #1322
Unanswered
jordanpadams
asked this question in
Q&A
Replies: 1 comment 1 reply
-
1. How does validate read in XML? What parser is it using?NASA-PDS/validate uses Java's standard XML parsing libraries:
2. Is it using the same parser to read schema, schematron, and label?
3. What errors is it detecting and how?
All errors are converted into 4. What Java library is "applying those schema/schematron"?
The key Java class for schematron transformation is 5. How does the caching of the schemas and schematrons work?
This avoids repeated I/O and transformation overhead for each validation operation. 6. Do we transform the schematron with the stylesheet with every file that is processed? Or is the stylesheet cached?
References |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Some technical deep dive questions:
Beta Was this translation helpful? Give feedback.
All reactions