Re: JAXP validation & SoftReferenceSymbolTableConfiguration

2008-09-02 Thread Michael Glavassevich
Hi Christian, The XMLParserConfiguration (e.g. SoftReferenceSymbolTableConfiguration) is essentially the XML parser: a pipeline of XML processing components including an XML scanner, namespace binder, DTD validator, etc... It may contain a schema validator but makes no sense for a schema validato

JAXP validation & SoftReferenceSymbolTableConfiguration

2008-08-18 Thread Christian Koppen
Hi, I use Xerces 2.9.1 via the JAXP-API to validate XML documents against XML schema in the following manner: SchemaFactory factory = SchemaFactory.newInstance(W3C_XML_SCHEMA_NS_URI); Schema schema = factory.newSchema(schemaUrl); Validator v = schema.newValidator(); v.validate(xmlUrl); I'm curr