This is the mail archive of the xsl-list@mulberrytech.com mailing list .


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

setStylesheetParameter() question


Using Xalan and Xerces, I'm tring to send into the XSLT a set of strnig
parameters.  Here's what I've got:

  xsltProcessor.setStylesheetParam("testing", "'testing val'");  //note the
single quotes

<xsl:template match="/">
  <xsl:apply-templates>
    <xsl:with-param name="testing"/>
  </xsl:apply-templates>
</xsl:template>

<xsl:template match="someelement">
  <xsl:param name="testing"/>
  <xsl:value-of select="$testing"/>
</xsl:template>


I know the secont template is getting called because the other stuff that's
in there (in my real one) is being output.  How do I output the parameter
that I sent in?


Brian Dupras
Centera Information Systems, Inc.
phone 303.381.4420 (direct)
phone 303.939.0200 (operator)
fax	303.939.0111
web	http://www.centera.com
email	briand@centera.com


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

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]