XsdParser
XsdParser copied to clipboard
A Parser that parses a XSD file into a Java Structure.
In my use case I have several XSDs that import each other. However, the namespace location provided in the schemas is not accessible from the code (instead, the schemas are...
I ma having problems parsing the XSD in windows. There are a lot of missing attributes: In MacOs: In Windows with the same code, same input XSD, and same JDK...
I try to create own xsd processor based on xsdparsercore. ```java public class InputStreamXsdProcessor extends XsdParserCore { public InputStreamXsdProcessor(List inputStreams) { this.parse(inputStreams); } public InputStreamXsdProcessor(List inputStreams, ParserConfig config) { super.updateConfig(config);...
**Describe the bug** A forward reference to an element results in an unresolved reference for the type of that element. Consider the following schema: ``` xml ``` This correctly results...