|
From: Patrick K. <mai...@gm...> - 2006-04-07 15:47:05
|
Hi Our application, which is based on the Java Service Wrapper, is installed t= o: C:\Program Files\app-name\bin\ We are using the wrapper-delta-pack-3.2.0 The Windows batch files, including InstallTestWrapper-NT.bat, UninstallTestWrapper-NT.bat and TestWrapper.bat, fail with the following message: Unable to locate a Wrapper executable using any of the following names: C:\Program Files\app-name\bin\wrapper-windows-x86-32.exe C:\Program Files\app-name\bin\wrapper-windows-x86-64.exe C:\Program Files\app-name\bin\wrapper.exe This is because the path contains spaces and the batch files do not enclose the path to the wrapper exe file in quotes when checking to see if it exists. e.g. if exist %_WRAPPER_EXE% goto conf can be made to work on a path with spaces by enclosing the variable in quot= es: if exist "%_WRAPPER_EXE%" goto conf Is this how we should solve the problem. Will the batch files be updated for the next release? Thanks for your help. The wrapper is excellent. We are very happy with it= . Patrick |