This may be related to the jvm/jdc, but when I start up a debugging
session buy selecting Debug App from the JDE menu I get the following:
*** Debugger Output for Process com.ipverse.svc.sim.main.SIMMain(2) ***
Launch command line:
java -classic -classpath
.:..:/home/rbraud/SIMCreation/classes:/home/rbraud/SIMCreation/jars/jloox13.jar:/usr/java/jdk1.3/lib/dt.jar
-sourcepath /home/rbraud/SIMCreation/src
com.ipverse.svc.sim.main.SIMMain
Error: debugger unable to launch com.ipverse.svc.sim.main.SIMMain.
Reason: VM initialization failed for: /usr/java/jdk1.3/jre/bin/java
-classic -Xdebug -Xnoagent -Djava.compiler=NONE
-Xrunjdwp:transport=dt_socket,address=rbraud-d3.richardson.ipverse.com:1075,suspend=y
-classpath
.:..:/home/rbraud/SIMCreation/classes:/home/rbraud/SIMCreation/jars/jloox13.jar:/usr/java/jdk1.3/lib/dt.jar
-sourcepath /home/rbraud/SIMCreation/src
com.ipverse.svc.sim.main.SIMMain
VM options: '-classic '
Error: unable to run com.ipverse.svc.sim.main.SIMMain..
Reason: (-1 error (Malformed command: jde.debugger.JDEException:
Application 2 does not exist)).
Seems kinda odd to me that it is trying to start up a "java" session
instead of a "jdb" session.
Anyway any ideas?
My .emacs file is as follows:
(add-to-list 'load-path (expand-file-name
"/home/rbraud/jde-2.2.5/lisp"))
(add-to-list 'load-path (expand-file-name "/home/rbraud/speedbar-0.12"))
(add-to-list 'load-path (expand-file-name
"/home/rbraud/semantic-1.2.1"))
(add-to-list 'load-path (expand-file-name "/home/rbraud/elib-1.0"))
(require 'jde)
(custom-set-variables
'(jde-db-set-initial-breakpoint nil)
'(modeline-click-swaps-buffers t)
'(paren-mode (quote sexp) nil (paren))
'(jde-compile-option-debug (quote ("selected" (t t t))))
'(jde-db-option-vm-args (quote ("-sourcepath
/home/rbraud/SIMCreation/src")))
'(pc-select-selection-keys-only t)
'(jde-bug-vm-includes-jpda-p t)
'(jde-global-classpath (quote ("." ".."
"/home/rbraud/SIMCreation/classes" "/ho
me/rbraud/SIMCreation/jars/jloox13.jar" "/usr/java/jdk1.3/lib/dt.jar")))
'(jde-bug-jdk-directory "/usr/java/jdk1.3")
'(column-number-mode t)
'(default-toolbar-position (quote left))
'(gnuserv-program (concat exec-directory "/gnuserv"))
'(jde-run-classic-mode-vm "on")
'(tab-width 3)
'(pending-delete-mode t nil (pending-del))
'(jde-compile-option-sourcepath nil)
'(jde-build-use-make t)
'(line-number-mode t)
'(pc-select-meta-moves-sexps t)
'(mouse-yank-at-point t)
'(jde-compile-option-deprecation t)
'(jde-make-args "debug")
'(pc-selection-mode t nil (pc-select))
'(jde-bug-jre-home "/usr/java/jdk1.3/jre"))
'(jde-db-debugger (quote("JDEbug" "" . "Executable")))
(custom-set-faces)
Thanks.