It may or may not be related but
select="document('\\intranet\FileName.xml')" />
refers to a file with name \\intranet\FileName.xml in the current
directory but as you are in windows I don't think you can have \
in file names.
The argument to document has to be a URI not a windows path, so
/ not \ is the path separator.
The mapping between URIs and windows lan \\ naming convenntion
is a bit of a black art though, but you could try
//intranet/FileName.xml
file://intranet/FileName.xml
file:///intranet/FileName.xml
If you have \\intranet mapped to a drive letter
so you can also see it as
x:FileName.xml
then
file:///x:FileName.xml
should work (I think)
David
________________________________________________________________________
This e-mail has been scanned for all viruses by Star Internet. The
service is powered by MessageLabs. For more information on a proactive
anti-virus service working around the clock, around the globe, visit:
http://www.star.net.uk
________________________________________________________________________
XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list