vote up 1 vote down star

I want to read an XML file that has a schema declaration in it.

And that's all I want to do, read it. I don't care if it's valid, but I want it to be well formed.

The problem is that the reader is trying to read the schema file, and failing.

I don't want it to even try.

I've tried disabling validation, but it still insists on trying to read the schema file.

Ideally, I'd like to do this with a stock Java 5 JDK.

Here's what I have so far, very simple:

    DocumentBuilderFactory dbf = DocumentBuilderFactory.newInstance();
    dbf.setValidating(false);
    DocumentBuilder db = dbf.newDocumentBuilder();
    Document doc = db.parse(file);

and here's the exception I am getting back:

java.lang.RuntimeException: java.io.IOException: Server returned HTTP response code: 503 for URL: http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd

Yes, this HAPPENS to be an XHTML schema, but this isn't an "XHTML" issue, it's an XML issue. Just pointing that out so folks don't get disrtacted. And, in this case, the W3C is basically saying "don't ask for this thing, it's a silly idea", and I agree. But, again, it's a detail of the issue, not the root of it. I don't want to ask for it AT ALL

Thanx!

flag

40% accept rate
This appears to be related to: stackoverflow.com/questions/155101/… – jt Jul 27 at 0:43

3 Answers

vote up 5 vote down check

The reference is not for Schema, but for a DTD.

DTD files can contain more than just structural rules. They can also contain entity references. XML parsers are obliged to load and parse DTD references, because they could contain entity references that might affect how the document is parsed and the content of the file(you could have an entity reference for characters or even whole phrases of text).

If you want to want to avoid loading and parsing the referenced DTD, you can provide your own EntityResolver and test for the referenced DTD and decide whether load a local copy of the DTD file or just return null.

Code sample from the referenced answer on custom EntityResolvers:

   builder.setEntityResolver(new EntityResolver() {
        @Override
        public InputSource resolveEntity(String publicId, String systemId)
                throws SAXException, IOException {
            if (systemId.contains("foo.dtd")) {
                return new InputSource(new StringReader(""));
            } else {
                return null;
            }
        }
    });
link|flag
I was thinking this is what I would have to do, I simply made an "empty" EntityResolver that always returns the empty InputSource for everthing. This seemed to do the trick. – Will Hartung Jul 27 at 17:15
vote up 0 vote down

I've not tested this, but you could try calling setSchema on the factory passing null.

i.e.

DocumentBuilderFactory dbf = DocumentBuilderFactory.newInstance();
dbf.setValidating(false);
dbf.setSchema(null);
DocumentBuilder db = dbf.newDocumentBuilder();
Document doc = db.parse(file);

Update: Looking at DocumentBuilderImpl it looks like this might work, from the constructor it will check the grammar from the factory before checking the schema.

From DocumentBuilderFactoryImpl:

public void setSchema(Schema grammar) {
    this.grammar = grammar;
}

From DocumentBuilderImpl constructor:

...
this.grammar = dbf.getSchema();
if (grammar != null) {
    XMLParserConfiguration config = domParser.getXMLParserConfiguration();
    XMLComponent validatorComponent = null;
    /** For Xerces grammars, use built-in schema validator. **/
    ...
}
link|flag
vote up 1 vote down

The issue here isn't one of validation. Regardless of validation settings, the parser will still attempt to resolve any references in your document, such as entities, DTDs and (sometimes) schemas. It's only later on that it decides to validate using them (or not). You need to plug in an entity resolver to "intercept" these attempts at de-referencing.

Check out Apache XML Resolver for an easy(ish) way to do this.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.