Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have the following XSLT 2.0 template:

<xsl:template name="t1">
<xsl:variable name="totalpos" as="xsd:double" select="$currentTotal"/>
..  

I am struggling to programmatticaly provide currentTotal as a parameter to the transformer, like this:

transformer.setParameter("currentTotal", new Double("100"))

.. but without any positive results:

Error at /xsl:transform/xsl:template[3]/xsl:variable[1] XPST0008: XPath syntax error at char 13 on line -1 in {$currentTotal}: Variable $currentTotal has not been declared

When calling setParameter(), the currentTotal variable will also get defined, right? How should I invoke the setParameter() call so that the currentTotal defined in my application will be seen inside the style-sheet?

For clarification, I am instantiating the transformer like this:

System.setProperty("javax.xml.transform.TransformerFactory", "net.sf.saxon.TransformerFactoryImpl");
transformerFactory = new TransformerFactoryImpl();
transformer = transformerFactory.newTransformer(inputNodes);
share|improve this question

1 Answer

up vote 1 down vote accepted

Parameters have to be declared in your stylesheet using

<xsl:param name="currentTotal"/>

inside the xsl:stylesheet element. You can also define a default value with the select attribute or inside the element body.

share|improve this answer
Indeed, I need to define the variable. I was expecting that it will be defined when I setParameter, but I was wrong. Sorry for my late check, I was on vacation. Thanks! – user414366 Aug 20 '10 at 19:01

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.