On Tue, 2007-09-18 at 22:18 +0200, Boris Kolpackov wrote: > David Bertoni <[EMAIL PROTECTED]> writes: > > > You can use loadGrammar() with an empty string for the namespace URI > > Just a small correction: loadGrammar does not require one to pass > the target namespace. Instead it gets this information from the > schema itself.
I'm dealing with a similar problem -- the XML is known to be in a particular namespace, but the root element does not have an XML namespace declaration. I've got an .xsd file containing the schema for the namespace. The difficulty seems to be that there is no way to tell Xerces "use *this* .xsd for validating no-namespace nodes", because Xerces will read the namespace declaration in the .xsd file. Given that the underlying parser has a way of inheriting the default namespace from an element to its children, it seems like there must be a way of setting the "your default namespace" for the root element of the XML to be parsed. Dale
