Hi,
I am trying to redirect the output of the XSLT into multiple files using
<xsl:variable name="filename" select="concat(@id,'.xml')" />
<redirect:write select="$filename">
...
</redirect:write>
I dont want to hard-code the directory of the $filename in XSL, I want to set it or resolve it programatically in the java code.
Can you please tell me if this can be done in someway ?