On Wed, 11 Sep 2002, Otto von Wachter wrote: > I also tried other variations, like > context.runScript( "file://C:/../sample.jelly", xmlOutput );
The URL format is <protocol>://[<host>[:<port>]]/file so you are specifying that the "C" is the host (and the port is empty). try using three slashes instead (leaving the "host" field blank): file:///C:/../sample.jelly Don't know if that'll solve your problem or not though, as I'm not familiar with jelly. regards, michael -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>
