python (12.9k questions)
javascript (9.2k questions)
reactjs (4.7k questions)
java (4.2k questions)
java (4.2k questions)
c# (3.5k questions)
c# (3.5k questions)
html (3.3k questions)
How to configure Xerces2-J to ingore xsi:schemaLocation hints?
I am using Xerces2-J and have built a grammar pool as described in the Grammars FAQ
When parsing the document instance, I would like the parser to ignore any xsi:schemaLocation or xsi:noNamespaceSchem...
yas
Votes: 0
Answers: 0
What do Public Identifier, System Identifier, and Base system identifier refer to in XML?
The Xerces2-j XMLInputSource, and also SAX InputSource, refer to public and system identifiers. Xerces2-J XMLInputSource also refers to a base system identifier.
What do these identifiers represent?
...
yas
Votes: 0
Answers: 2
Can XSModel object be obtained from a Schema Object?
Using JAXP I can create a Schema object. e.g.
Path schemaPath = ...;
StreamSource source = new StreamSource(schemaPath.toFile());
SchemaFactory factory =
SchemaFactory.newIns...
yas
Votes: 0
Answers: 1