At 11:20 AM 4/25/00 -0400, you wrote: >Paul, I'm getting, please help: > >*** Debugger Output for Process axewiz(4) *** > >Error: debugger unable to launch axewiz. > Reason: Unable to launch: java.io.IOException: CreateProcess: >c:/jdk1.2.2/jre/bin/javaw -Xdebug -Xnoagent -Djava.compiler=NONE >-Xrunjdwp:transport=dt_shmem,address=javadebug,suspend=y -classpath >c:/jdk1.2.2/lib/;c:/My Documents/java/gnu-regexp-1.0.8.jar;. axewiz >error=193 > The above command is the command that the debugger uses to try to launch your application. If the command is ok, you should be able to copy it into a shell and execute it there. If not, whatever error occurs is the error that is preventing the debugger from launching your app. I suspect the problem is the class path that includes the directory name with a space, i.e., "My Documents". In my opinion, creating paths with spaces on Windows is asking for trouble. Also, I never use backslashes in paths because Emacs is a lisp application and the backslash character is an escape character in Lisp. - Paul - Paul
