Hi, On Mon, 2006-05-15 at 13:09 +0200, John Knoop wrote: > No I meant if I wish to distribute MY application as a class file. I don't > want to mess with the class files inside the Batik jar files.
Yup, it is good idea not to mess the batik generated jar files, unless you want to optimize the size of jar, etc Under normal java command line (servlet, server side container might differ) you normally invoke java like this "java -cp somejar.jar;somedir main.class.file". It is the same you also invoke the same command line "java -cp batik-all.jar;pdftranscoder.jar;xml-apis.jar;somefolder main.class.file" Please include all jar generated / included by batik inside the -cp (classpath option). The separator ";" might differ on different platform eg: Windows or Unix, check the jdk docs. Regards Tonny Kohar -- Sketsa SVG Graphics Editor http://www.kiyut.com --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
