> -----Original Message----- > From: Andreas L. Delmelle [mailto:[EMAIL PROTECTED]
> [Finn:] > > I couldn't get that working. As I see the it, the SAXException from the > > xml parsing is not passed through to the ErrorListener. > > > > The source code from xalan confirms that. No ErrorHandler is passed to > > the XMLReader that is create in TransformerIdentityImpl.java. > > > The more I think about it --Cute! so: TransformerIdentityImpl has setErrorListener(), being extended from Transformer org.xml.sax.XMLReader() has setErrorHandler() Someone's definitely not using them appropriately (?-- Xalan?) To think that this may all boil down to one line of code missing: reader.setErrorHandler( (ErrorHandler) this.getErrorListener() ); ;-P Cheers, Andreas