Hello,
I need to use two xml files with an xslt but one of them is
dynamically created, and I like to pass this dynamically created xml
document to the xslt as a variable.
I have tested the scenario with the xslt referencing two static xml files as:
<xsl:variable name="rules" select="document('rules.xml')"/>
<xsl:variable name="dynamic" select="document('dynamic.xml')"/>
I use the variable names to reference each file in the various xpath
expressions.
However now that the xslt behaves as intended, I no longer want to
read the "dynamic" part from a file but through a java string which
dynamically changes.
Many thanks,
J
|