• 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

Debugging remote applications using Eclipse

 
Greenhorn
Posts: 13
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hello,
I am trying to debug a Java application which is currently running on Weblogic remotely on a UNIX box.Which is the best way to debug the application using Eclipse?I don't access to the logs either.Neither do I have access to the command line prompt to look at debug statements.Not sure what is to be done.

Please advise.

Thanks
 
Saloon Keeper
Posts: 27807
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
You need to go the the WebLogic forum and ask them about how to run WebLogic with Remote Debugging turned on.

Remote Debugging is a basic ability of any Java program to open up a network port for a debugger to use. You can usually pick any port number you want as long as no other application on the target machine is using it.

Once WebLogic has been started with Remote Debugging, create a Java Debug using the Remote Debugging category on the Run/Debug Configurations... dialog and start it. The debugger will then connect to WebLogic (assuming no firewall gets in the way). You can set the breakpoints, etc. just like you would doing local debugging.
 
Rumi Harry
Greenhorn
Posts: 13
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Thank you for your reply.
 
Don't get me started about those stupid light bulbs.
reply
    Bookmark Topic Watch Topic
  • New Topic