xmltools
xmltools copied to clipboard
Xsl fails schema on included template call
In the latest version (this worked in Xml Tools V2) running an xsl which includes another xsl then calls a template fails schema validation for the xsl.
Scenario:
Create xsl with:
<xsl:template name="FormatData">test</xsl:template>
Include that file in the primary xsl and call the template: ` <xsl:include href="formdata.xsl"/>
<xsl:call-template name="FormatData"></xsl:call-template> `