Hello,
what is the fastet way to return nodes by an extension function in
XSLTC? I am using dom4j to hold a document reference which will be
requested by a xsl:variable like this to access external content:
<xsl:variable name="content" select="myextension:content('key')"/>
I want to make this as fast as possible, i.e. to prevent XSLTC to having
to convert the nodes more often than needed.
What objects can I return in an XSLTC extension holding the node list?
Do I need to return a w3c DOM or can I also build an XSLTC internal
object once and return it?
Thx,
Nils