Multiple Output Documents with XSLServlet

Subject: Multiple Output Documents with XSLServlet
From: "Kirk V. Hastings" <khasting@xxxxxxxxxxxxxxxxxxxx>
Date: Mon, 11 Oct 1999 15:31:04 -0700
All,

I've been using the xt:document extension to output a "framed" view of a document:

<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform";
  xmlns:xt="http://www.jclark.com/xt";
  extension-element-prefixes="xt">

<xsl:template match="/">
  <xt:document method="html" href="frame.html">
    <xsl:call-template name="frame"/>
  </xt:document>
  <xt:document method="html" href="toc.html">
    <xsl:call-template name="toc"/>
  </xt:document>
  <xt:document method="html" href="content.html">
    <xsl:call-template name="content"/>
   </xt:document>
</xsl:template>
...
</xsl:stylesheet>

Now I would like to do it dynamically with James Clark's XSLServlet. However, not being a Java programmer, I'm finding it difficult to see what changes I would have to make to the code in order to output multiple documents directly to the browser. Has anyone else tackled a similar problem?

Kirk

Kirk V. Hastings
Digital Publishing Specialist
Library Systems Office
386 Doe Annex
University of California
Berkeley, CA, 94720

khasting@xxxxxxxxxxxxxxxxxxxx


XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list



Current Thread