Parsing XML documents behind a firewall; java makes a connect to theactual DTD?

B

Berlin Brown

Xerces or some seems to make a request to the DTD to use while
validating a XML document.

This is a major bug that even the w3c is complaining about.

Does anyone know how to turn this. Off. I want to do it through some
java setting as opposed to visiting each individual file.?

This is essentially the code:

public static Object [] validateXML(final String url, final String
http_data) {
try {
if ((http_data == null) || (http_data.length() == 0)) {
throw new RuntimeException("Invalid HTTP data argument");
}

final DOMParser parser = new DOMParser();
parser.setFeature("http://xml.org/sax/features/validation", true);
parser.setProperty("http://apache.org/xml/properties/schema/
external-noNamespaceSchemaLocation",
"memory.xsd");
LoadTestXMLDefaultHandler errors = new LoadTestXMLDefaultHandler();
parser.setErrorHandler(errors);
parser.parse(new InputSource(new StringReader(http_data)));
Object tuple [] = { new Boolean(true), "" };
return tuple;
} catch (Exception e) {
final StringBuffer err_msg = new StringBuffer();
err_msg.append("ERR: validateXML() - Error validating HTTP
content.");
err_msg.append("ERR: url=" + url + " error=" + e.getMessage());
Object tuple [] = { new Boolean(false), err_msg.toString() };
return tuple;
}
}
 
C

CK

Words to the wise said:
Xerces or some seems to make a request to the DTD to use while
validating a XML document.

This is a major bug that even the w3c is complaining about.

Does anyone know how to turn this. Off. I want to do it through some
java setting as opposed to visiting each individual file.?

Does this help?

http://xerces.apache.org/xerces-j/a...ork/XMLParser.html#setLoadDTDGrammar(boolean)
--
Claus Dragon <[email protected]>
=(UDIC)=
d++ e++ T--
K1!2!3!456!7!S a29
"Coffee is a mocker. So, I am going to mock."

- Me, lately.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

Forum statistics

Threads
473,754
Messages
2,569,526
Members
44,997
Latest member
mileyka

Latest Threads

Top