Is it possible to process xml files with unreachable (or unavailable) DTDs? Even using a non-validating sax parser as source, xalan still throws the
javax.xml.transform.TransformerException: java.io.FileNotFoundException: office.dtd
where office.dtd is the input file dtd. Here's the source:
SAXParserFactory spf = SAXParserFactory.newInstance();
spf.setValidating(false);
spf.setNamespaceAware(true);
XMLReader xmlr = spf.newSAXParser().getXMLReader();
TransformerFactory tf = TransformerFactory.newInstance();
Transformer t = tf.newTransformer(new StreamSource("notes.xsl"));
t.transform(new SAXSource(xmlr, new InputSource("content.xml")), new StreamResult("output.html"));
Thanks in advance, Marco
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]