XsdParser icon indicating copy to clipboard operation
XsdParser copied to clipboard

A Parser that parses a XSD file into a Java Structure.

Results 4 XsdParser issues
Sort by recently updated
recently updated
newest added

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...