In my xslt, I am calling external code to assign a node set to a xslt variable. I would now like to apply template on this node set.
<xsl:variable name="var1" select="ExtObject:GetNodeSet()"/>
So far I have seen that templates can be applied to input xml document. But can I parse the xml assigned to var1 with apply templates and reflect the result in the output document?