Hi Sliders, I downloaded the Slide's nightly build and tried to make the client working on W2k. The problem is that the run.bat batch file does not execute :
The first reason is that in the beginning of the batch file, --------------------------------------- if "%SLIDE_HOME%" == "" goto getHome else goto gotHome --------------------------------------- Should be replaced by : ---------------------------------------- if "%SLIDE_HOME%" == "" (goto getHome) else (goto gotHome) ----------------------------------------- Correct me if I'm wrong but I think, the second one is that a "strange" command is used to launch the client : Shouldn't this command : ---------------------------------------- set MAINCLASS=org.apache.webdav.cmd.Slide java -classpath %CP% %MAINCLASS% %1 %2 %3 %4 %5 %6 %7 %8 %9 ---------------------------------------- be replaced by : ------------------------------------------ java -jar slide-client.jar %1 %2 %3 %4 %5 %6 %7 %8 %9 ------------------------------------------ and the line : ----------------------------------------- Main-Class: org.apache.webdav.cmd.Slide ----------------------------------------- added to the manifest file of the jar file 'slide-client.jar' ? Finally, I wanted to ask you a question : as the client API is quite buggy, shouldn't we concentrate on debugging it ?? Regards, Jimmy. -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>
