xslt 2.0 document function
for xslt 1.0 and 1.1 I was passing a parameter file0="file:///C:\xslt\dis_message_module.xml". I then referenced it by
<xsl:variable name="FILE" select="document($file0)/root"/>
however, in xslt 2.0, (saxon 8B) I get a Warning: Invalid URI error. How must I change the parameter so that it works again?
(Note: I CAN NOT specify this path relatively to either the source xslt or xml document.)
|