1

I have several application deployed in Weblogic Server. When I run the server in debug mode, some of my application stops at break point, some stops in class file and other don't even bother to stop at break point. What could be the reason that debugger works for one application and not for the other?

user1171699
  • 101
  • 13

1 Answers1

0

Are you sure that you start all these application in debug mode? Another case maybe breakpoints are not achieved.

Łukasz Rzeszotarski
  • 5,791
  • 6
  • 37
  • 68
  • I started server in debug mode via Eclipse IDE. – user1171699 Mar 28 '12 at 18:25
  • hmmm... strange. Try When you look in debug perspective to look at threads list. There you have listed all threads that are started at your server. Make sure yourself that there is no more threads in breakpoints than you think. Sometimes eclipse doesn't show at 'first' plan thread that is in breakpoint. But you can switch between threads by clicking on them in threads list window. – Łukasz Rzeszotarski Mar 28 '12 at 20:23
  • I found where the error was. It was in .CLASSPATH file. Thanks for looking into this issue Lukasz. – user1171699 Mar 28 '12 at 20:56