Newbies wurdup Posted February 11, 2011 Newbies Posted February 11, 2011 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
beverly Posted October 4, 2011 Posted October 4, 2011 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/>
Recommended Posts
This topic is 4867 days old. Please don't post here. Open a new topic instead.
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now