I ask for some help here for debugging a class in a deployed jar file, As the codes below, I have a stateless session bean and its interface packaged into a iiop.jar file which deployed to server, and I try to debug to see execution of testException method, but that class that read from a deployed jar file,
StatelessSessionHome home =
(StatelessSessionHome)PortableRemoteObject.narrow(
getInitialContext().lookup(StatelessSessionHome.JNDI_NAME),
StatelessSessionHome.class);
StatelessSession session = home.create();
(break point here) session.testException(-2);
the debug process will jump to the next step and ignore things happened in testException() with a follow message: _StatelessSession_Stub.testException(int) line: not available and asking to edit source path
Any suggestion should be helpful.