• 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 Debugging the Oracle Weblogic 10.3.3

 
Greenhorn
Posts: 28
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I am used to weblogic server earlier(8.1 and 9.2). Now I am doing weblogic after a long time. As i need to download, I am not finding the similar structure now. There are multiple startWeblogic.cmd files. In the file located at c:\bea\wl_server10.3\samples\ws_server, the startweblogic.cmd file is admin server file I am supposing and everything is given using annotations. Can someone guide what script I am supposed to write so as to do remote debugging of weblogic from eclipse.


 
Bartender
Posts: 6663
5
MyEclipse IDE Firefox Browser Linux
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
The startup script may itself provide a flag such as '-debug' to enable debugging, failing which you can use the -X java flags to enable a remote debug port. I think the default one is 8007.

This should be pretty simple to setup
 
Ranch Hand
Posts: 104
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
i am also trying to debug weblogic 9.2 from eclipse where weblogic is running on a remote server. i have successfully managed to debug when weblogic is running on the same server as eclipse by modifying setDomainEnv.cmd. i simply added the following line:
before
but when i do the same on the remote server weblogic does not start up in debug mode. i have checked netstat and nothing is listening on port 8453. any ideas?
The following points are worth noting:
  • in setDomainEnv.cmd PRODUCTION_MODE is set to true on the remote server
  • I am able to debug tomcat which is also running on the remote server
  • Thanks

     
    Pay attention! Tiny ad!
    a bit of art, as a gift, the permaculture playing cards
    https://gardener-gift.com
    reply
      Bookmark Topic Watch Topic
    • New Topic