• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

Unable to connect to the application in debugg view?

 
Greenhorn
Posts: 6
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi Friends,

Could you please help for the following query..

I am using Eclipse 3.0 and weblogic8.1 with JDK14.
I am putting the break points in proper classes only but the debugg cursor is not stoping over there application is running nicely without any debugging process.
Eventhough i specified the source as WEB-INF/src in the Project-->Properties->JavaBuildPath->Source.
 
Greenhorn
Posts: 4
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
What plugin are you using to debug? MyEclipse is the most famous. If is that the case then your server (that is configured inside MyEclipse plugin) has to be configured in debug mode.
 
Greenhorn
Posts: 21
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi Friend,

I used the weblogic plugin's only..Then i got Server specification block in eclipse..After what i have to do to set the debug mode to the application
Could you please help me ...It is very very urgent

Thanks
T. Shankar Reddy
 
Ranch Hand
Posts: 66
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Append the following lines for JAVA_OPTIONS.
JAVA_OPTIONS can be found in startManagedWebLogic.cmd file or in startWebLogic.sh file

-Xdebug -Xnoagent -Djava.compiler=NONE
-Xrunjdwp:transport=dt_socket,address=3999,suspend=y,server=y
 
reply
    Bookmark Topic Watch Topic
  • New Topic