xsl:on-completion not run for xsl:iterate select="1"?
Added by Martin Honnen over 4 years ago
Using Saxon 10 HE, the short test program
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:xs="http://www.w3.org/2001/XMLSchema"
exclude-result-prefixes="#all"
version="3.0">
<xsl:output method="xml" indent="yes" />
<xsl:template match="/" name="xsl:initial-template">
<xsl:iterate select="1">
<xsl:param name="p1" as="xs:string" select="'test'"/>
<xsl:on-completion>
<completion>
<xsl:copy-of select="$p1"/>
</completion>
</xsl:on-completion>
</xsl:iterate>
</xsl:template>
</xsl:stylesheet>
does only output <?xml version="1.0" encoding="UTF-8"?>
? Shouldn't the xsl:on-completion
be executed and output e.g. <completion>test</completion>
?
Replies (1)
RE: xsl:on-completion not run for xsl:iterate select="1"? - Added by Michael Kay over 4 years ago
Thank you for reporting this, I have raised it here:
Please register to reply