• 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

Remote debug under ganymede/galileo

 
Greenhorn
Posts: 19
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi there, I'm trying to configure remote debug for a web application running under weblogic 9.2. As usual I add this to the start command:

-Xdebug -Xrunjdwp:transport=dt_socket,address=17001,server=y,suspend=n

and then I add a remote debug configuration to eclipse ide.
The remote debug config seems to work (in the debug windows appears the remote debug stack) but when I add a break point tand execute the web appl
it doesn't stop.
Why?

Tks, ciao

PS I tried also to configure the wls as a server with the eclipse plug in but I have the same problem.
 
Saloon Keeper
Posts: 27762
196
Android Eclipse IDE Tomcat Server Redhat Java Linux
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Sounds like your source code in Eclipse and the class files on the remote application aren't in sync with each other. If the source code isn't the same code that produced the class you're debugging, a breakpoint may be set, but it might be set on a completely different statement within the class. And if you do hit the breakpoint, the Eclipse display won't match what the class is doing there.
 
I carry this gun in case a vending machine doesn't give me my fritos. This gun and this tiny ad:
a bit of art, as a gift, that will fit in a stocking
https://gardener-gift.com
reply
    Bookmark Topic Watch Topic
  • New Topic