Here is my java code, related to parameter:
transformer.setParameter("limad","1234");
transformer.transform(text, new StreamResult(response.getOutputStream()));
My xslt has:
<xsl:template match="/">
<xsl:param name="limad"/>
.... lots of stuff here...
<td>
<xsl:value-of select="$limad"/>
</td>
.... lots of stuff here...
</xsl:template>
My result is:
<td></td>
Any ideas? How can I debug this?
I’m not an expert with java, but if you are trying to pass parameters into an xslt, you need to put them outside template-match=”/”