> Hello
>
[quoted text clipped - 10 lines]
>
> Christian
You have start the Java process (the one to be debugged) with some more
options. Instead of starting it with
java ...
you have to start it with
java -Xdebug -Xnoagent -Djava.compiler=NONE \
-Xrunjdwp:transport=dt_socket,server=y,suspend=n,address=12345 ....
This will start your Java process as usual, but the JVM will also listen for
a debugger connection on port 12345.
In Eclipse you have to create a Debug configuration ("Remote Java
application") with the host name and the debug port number ("12345" from
the example above).
Later, when you want to debug the already running Java process, you have to
launch this Debug configuration.
You may also want to google for "Java remote debugging".

Signature
Thomas