It looks like you are indeed returning a nodeset. However, you are then assigning that to an RTF in:
> <xsl:variable name="testcies"> > <xsl:value-of select="liste-compagnie:getListeIter()"/> > </xsl:variable> Try: <xsl:variable name="testcies" select="liste-compagnie:getListeIter()"/> HTH, Gary
