|
From: Christian M. <chr...@ta...> - 2011-04-06 04:15:40
|
Martin, I'm sorry for the delay on this. The problem is that on Windows the command line of the JVM is literally a line, while in Unix it's an array. So in windows each element which has spaces but sticks together needs to be quoted. unix doesn't need that and actually takes the quotes as part of the parameter. please try the following setting: wrapper.java.additional.1="-Xbootclasspath/p:C:\wrapper sample\sample.jar" wrapper.java.additional.1.stripquotes=true This way, the Wrapper will strip of the quotes for the command line on unix, but be able to preserve it on Windows. Hope this helps you out. Best Regards, Christian On Mon, Apr 4, 2011 at 4:31 PM, Martin Keller <mar...@un...> wrote: > Hello, > > we have a little problem when specifying the boot class in > wrapper.conf-Files. > If the path contains spaces, the Windows version needs a quoted > specification, e.g. > > wrapper.java.additional.1="-Xbootclasspath/p:C:\wrapper sample\sample.jar" > > while the Unix doesn't accept quotes at all. > Is there any consistent way of specifying the boot classpath? > > > Sincerely, > Martin > > ------------------------------------------------------------------------------ > Create and publish websites with WebMatrix > Use the most popular FREE web apps or write code yourself; > WebMatrix provides all the features you need to develop and > publish your website. http://p.sf.net/sfu/ms-webmatrix-sf > _______________________________________________ > Wrapper-user mailing list > Wra...@li... > https://lists.sourceforge.net/lists/listinfo/wrapper-user > |