How could i achive something like
<xsl:stylesheet version="2.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:test="java:Hello">
<xsl:template match="/">
<test:Hola getTransformationOf="."/>
</xsl:template>
and my class Hello have a methode Hola returning a formated stream like
<fo:block>.......< /fo:block>
If i use <xsl:value-of select="test:MyMethode(.)"/>
the stream <fo:block>.......</fo:block>
will be presented as a string not as an FO instruction
PS: the transformation should be in a java class