|
From: Leif M. <le...@ta...> - 2004-08-06 15:53:22
|
Paul, The problem was being caused by the \" at the end of the library path. The Windows Command interpreter uses the backslash to escape the quote. So the error you saw was being caused by the library path not being closed correctly. I have fixed this for both the library path and classpath by adding a second backslash before the quote when the path would normally end in a backslash. The resulting double backslash then escapes to a single backslash, and the quote correctly terminates the path. This will be in the 3.1.2 release. Note that this is an issue with any of the parameter values to the JVM. The paths are the only places where I control the quotes directly however. I will make the strip quotes properties work correctly on Unix platforms as there are also some related issues there. Cheers, Leif Paul Guilmette wrote: >Thanks, I missed that. It now works fine. > > |