I developed my own class implementing the IProgramBaseEx interface.
MyOwnClass is being loaded and its run method is executed.
The code throws some runtime errors maybe due to some logical programming errrors:
I can schedule a program object that has been created through the CMC
and view its output as the content of a processes InfoView instance;
from there I am able to see the exceptions thrown.
I would like to enter a debugging session using JPDA under Eclipse 3.4;
the Tomcat process is running with debugging args under VmWare,
and I can attach to the remote process from Eclipse, which is running on my workstation (not whitin the VmWare machine);
[at least I can see all those ORBacus daemon threads from Tomcat for BOEXIR2 SP5].
My problem:
The debuggger process does not suspend on breakpoints
(e.g. right after entering the implemented IProgramBaseEx.run() method).
Maybe this is a class loading problem?
Any hints on how to stop at breakpoints in MyOwnClass are appreciated...