> Hi everybody,

Hi.

> Is there a way to configure xerces to be able to read a Document
> even if the dtd is not available (for instance if the server where
> the dtd is hosted is down) ?

I think so. You can deactivate a whole bunch of properties in Xerces. 
Use sth like this for a list of the features :

...
DOMParser myParser = new DOMParser();
String features[] = myParser.getFeaturesRecognized();
for(int i = 0; i < features.length; i++) {
  System.out.println(features[i]);
}
...

Should also work with the SAXParser.

Regards.

--
Bjoern Martin                                [EMAIL PROTECTED]



---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to