>I can't get my installed functions to actually be executed. All I get >from the transformation is "XObjectInvalidConversionException: Cannot >convert a #STRING to a node set."
That message could indicate that the returned value is being used in a situation where a node-set is expected. For example, <xsl:for-each select="func(args)"> The "func" function must return a node-set, whether it's a built-in or an extension function. .................David Marston