The docs directory contains xml files only, and the file
/xerces-1_4_1/docs/html/index.html is missing...
How to view document by using IE5 or Netscape6?
Thanks.
Ying
-----Original Message-----
From: Morten Jorgensen [mailto:[EMAIL PROTECTED]]
Sent: Friday, July 20, 2001 10:12 AM
To: xalan dev
Subject: TrAX and URIResolvers
We are still working on the TrAX implementation for XSLTC, and
we're getting closer and closer. I have a general question about
URIResolvers used with transformer factories and transformers.
The JavaDoc for TransformerFactory.setURIResolver() explains:
"Set an object that is used by default during the transformation
to resolve URIs used in xsl:import, or xsl:include."
This means that the URIResolver has to be passed to any Transformer
object the TransformerFactory creates. But what about a Transformer
object that was created from a Templates object? Should the
URIResolver set for the factory be passed through the Templates to
the Transformer? That could cause problems in cases where the
Templates object has been read from stable storage and the
URIResolver is not longer in memory. We can't write the URIResolver
to disk with the Templates object, since we don't know what the
URIResolver is, so I assume the answer to my question is "no, the
URIResolver should not be stored inside Templates objects".
Morten