Hi
I saw the following case: if variables are declared in XSLT to call template within a
template such error is thrown. For example:
<xsl:variable name="site">
<xsl:call-template name="setValue">
<xsl:with-param name="value"
select="sch:site/sch:site"/>
</xsl:call-template>
</xsl:variable>
If this is your case, please try to removed all variables and replace them with direct calls to
the template to get the value. Does it work for you as a solution?
Br, Alex.