At 10:31 AM 6/3/2003, you wrote:
Andreas Hartmann wrote:

Peter Klotz wrote:

So how can one read a file from the filesystem after a transformation?

You can write a transformer / serializer that reads a file and generates the appropriate SAX events. I don't know if such a component already exists.

Maybe you could use a stylesheet and the document function:


<xsl:param name="source"/>

<xsl:template match="/">
  <xsl:copy-of select="document($source)/*"/>
</xsl:template>

I think that should work.

It may, but I'd not recommend it.


Geoff


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



Reply via email to