Subject:xslt 2.0 split xml file within studio Author:shae devlin Date:07 Sep 2005 06:25 PM
Do you know what the error below is caused from???
---------------------------
Stylus Studio XML Enterprise Edition
---------------------------
java.lang.RuntimeException: The system identifier of the principal output file is unknown
URL: file:///c:/Documents and Settings/shaed/Desktop/msnNewDiamondShape2.xslt
Line:19
Col: 1
Jump to location?
---------------------------
Yes No
---------------------------
Subject:xslt 2.0 split xml file within studio Author:Tony Lavinio Date:08 Sep 2005 12:14 PM
If you do not supply an absolute URL for the output URL (meaning one
that contains the protocol and full path name), you must supply a base
URL somewhere in the scope. Otherwise, Saxon doesn't know where to put
the output files.
URLs don't automatically recognize the concept of 'current system
directory' because the context depends on the protocol, which you
didn't supply. Saxon can't tell whether you mean http: or file: or
ftp: or some other protocol, so it doesn't know in which place it
should try to put the output.
I found this by opening the source code to Saxon, which is supplied on
SourceForge (see http://saxon.sf.net/ for details) and searching for
the error message you posted.