I tried to pass a w3c.dom.Document, Element and NodeList as parameters to a xslt transform. I want to be able to process it within the xslt:
<xsl:param name="links" /> <xsl:template match="/"> ...
I'm trying to create an XSL template from an xsl file (actually held in a String referenced by xslString) that references some variables (as in <xsl:value-of select="$some.variable"/>) with the following Java ...
<xsl:value-of select="$some.variable"/>