Subject: RE: parameters
From: Kay Michael <Michael.Kay@xxxxxxx>
Date: Fri, 23 Jul 1999 09:26:38 +0100
|
> I have a question: I have a servlet that calls the xsl
> processor. Is it possible to pass servlet variables to an xsl file as
> parameters??? If it is so,
> What code I have to write into the xsl file to tell to the
> processor that the parameter must be retrieved from the servlet??
This is implementation-dependant.
With SAXON, the code is along the lines of:
StyleSheet sty = new StyleSheet();
sty.setSource( [ source URL] );
sty.setStyle( [ style URL] );
sty.setParams( params );
sty.setOutput( outputWriter );
sty.render();
where params is a Hashtable containing the parameters as keyword-value
pairs.
Mike Kay
XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
|