document() function for a file on another computer/server
问题 I understand the use of document() as follows. <xsl:value-of select="document('path\to\docuemnt.xml')/RootElement/Element"/> And this has to be a relative path to the parent XSL file. But what if I need to reference a file which is hosted on another server on the local network? I've tried such things as. <xsl:value-of select="document('\\servername\path\to\document.xml')/RootElement/Element"/> But this throws an error, because it looks in C:\path\to\xsl\\servername\path\to\document.xml Which