I have a xsl file in a jar. I also have a XML file named language.xml that is located next to the jar.
In the xsl, I want to load the XML document. This is how I am trying to achieve this:
<xsl:variable name="strs" select="document('../language.xml')/LanguageFile/Strings"/>
But the xml file is never loaded. Is it possible to have one file in a jar and the other outside or must they be both inside/outside the jar ??