Hi,
I'm running a
java application in a remote site, and I would like to debug the application. I'm using jdb, and, due to network architecture, I can only use jdb do debug in text-mode.
To debug in text-mode I use the command:
jdb -attach remotesite:port.
At this point this is ok. Now I would like to attach the source code to the jdb. I tried the command
jdb -attach remotesite:port ~/src/org/path/file.java
to attach the source code to the remote debug to. But it doesn't work.
In jdb, I try the command
use ~/src/org/path/file.java
but it doesn't work either.
How can I attach the source code to the remote debug?
Thanks,
PSC