Re: [xsl] Passing parameters in XSLT with Java

Subject: Re: [xsl] Passing parameters in XSLT with Java
From: JBryant@xxxxxxxxx
Date: Thu, 9 Jun 2005 12:48:35 -0500
Hi, Zak,

You can specify a stylesheet parameter.

<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="1.0" 
xmlns:xsl="http://www.w3.org/1999/XSL/Transform";>

  <xsl:param name="someParam"/>

  <xsl:template match="/">
    <xsl:value-of select="$someParam"/>
  </xsl:template>

</xsl:stylesheet>

Of course, you'll want to do something more interesting than just get the 
text value of the parameter, but this small example shows the syntax 
involved.

If you have a list, you may need to set up a recursive template to process 
the items in the list.

In XSLT 2.0, you have some more options, since you can specify the type of 
the parameter and use other 2.0 features to more readily process the list.

HTH

Jay Bryant
Bryant Communication Services
(presently consulting at Synergistic Solution Technologies)




"Zak Nixon" <zaknixon@xxxxxxxxxxxxxxxxx> 
06/09/2005 12:19 PM
Please respond to
xsl-list@xxxxxxxxxxxxxxxxxxxxxx


To
<xsl-list@xxxxxxxxxxxxxxxxxxxxxx>
cc

Subject
[xsl] Passing parameters in XSLT with Java






Is there any ways to pass lists of integers
to an XSLT stylesheet and let it work on those 
variables ?

Thx

Zak

Current Thread