I have application running on Weblogic. And I have another application which connects to one deployed on Weblogic and uses EJB of it. I am successfully connecting to EJB using JNDI, even my debugger shows that this class is currently launched (but the name is changed – WL added something to end of class name(like if class was AEjb, it shows that launched class is AEjb_krtm_pfff …)). But I can’t see nor variables, nor lines executed. So are there any ways to see what’s happening with this EJB class?
I have application running on Weblogic. And I have another application which connects to
Share
It’s no different than the way you are debugging the client side application. Add your EJB source code also in the debugger path and add a break point on EJB source code which you want to debug.
If your EJB is deployed on different Weblogic server, then you may want to use remote debugging option.