At 10:03 AM 8/26/99 +0100, you wrote:
>OK, I have no more problem with jpda path in variable jde-bug-jpda-directory
>and I have the JDEBug menu.
>
>But when I do JDE -> Debug App, I have a jde-dbo-command-error in the JDebug
>buffer
>
>javaw -classpath
>d:/dev/emacs/home/add_on/jde-2.1.6beta7/java/lib/jde.jar;d:/dev/java/jpda1.0
>/lib/jpda.jar jde.debugger.Main
>
>JDE> -1 4 launch 1 -use_executable javaw -classpath
>d:/projets/PlayerRecorder;d:/projets/PlayerRecorder/JTreeTable;d:/projets/Pl
>ayerRecorder/CastoreServerApp PlayerRecorder
>
>
>(jde-dbo-init-debug-session)
>
>
>(jde-dbo-command-error
>4 "VM initialization failed for: C:\Program Files\JavaSoft\JRE\1.2\bin\javaw
>-Xdebug -Xnoagent -Djava.compiler=NONE
>-Xrunjdwp:transport=dt_socket,address=wnt-pasiphae:2831,suspend=y -classpath
>d:/projets/PlayerRecorder;d:/projets/PlayerRecorder/JTreeTable;d:/projets/Pl
>ayerRecorder/CastoreServerApp PlayerRecorder")
>
The above message contains the command-line JDEbug uses to launch your
appplication. You can
often figure out what the problem by executing the exact same line yourself
in a command shell., e.g.,
> C:\Program Files\JavaSoft\JRE\1.2\bin\javaw -Xdebug -Xnoagent
-Djava.compiler=NONE
-Xrunjdwp:transport=dt_socket,address=wnt-pasiphae:2831,suspend=y -classpath
d:/projets/PlayerRecorder;d:/projets/PlayerRecorder/JTreeTable;d:/projets/Pl
ayerRecorder/CastoreServerApp PlayerRecorder
If you cannot run the application with this command line, neither can the
debugger.
Did you include the JPDA bin directory in your path environment variable as
instruced
in the releasse notes? If not, executing the above command line will result
in an error message
to the effect that java cannot find the jpda dll.
Paul