February 11, 201114 yr Newbies hi guys. I can't get result document to work when using XSL. It tells me the href has already been created. I think my foreach is wrong xml is root/dept/sub-dept. with multiple dept and muliple sub-dept in them. <xsl:for-each select="//dept/sub-dept"> <xsl:variable name="nameOf" select="sub-dept"/> <xsl:variable name="filename" select="concat('output1/',$nameOf,'.html')" /> <xsl:value-of select="$filename" /> <!-- Creating --> <xsl:result-document href="{$filename}" format="html"> </xsl:result-document> </xsl:for-each> appreciate the help thanks
October 4, 201114 yr are you trying to create multiple outputs from one XML file via XSLT? xsl:result-document is ONLY available with XSLT 2.0. FM uses only XSLT 1.0 <SIGH/>
Create an account or sign in to comment