Hello! I'm trying to convert a result tree fragment into a nodeset using xsl:copy-of. From the w3c spec, if I understand it correct, this should be possible:
"When a result tree fragment is copied into the result tree (see [11.3 Using Values of Variables and Parameters with xsl:copy-of]), then all the nodes that are children of the root node in the equivalent node-set are added in sequence to the result tree." I'm using the following piece of code: <xsl:variable name="node"><node><xsl:copy-of select="$fragment"/></node></xsl:variable> The following error occurs in this line: "#RTREEFRAG kann nicht in NodeList konvertiert werden!" Where's the problem? Kind regards Peter Nabbefeld
