I am using Weblogic 8.1 server & using the jre provided by Weblogic.
I am trying to remote debug the application using eclipse.
The debug parameters that set in the startup class are
-Djava.compiler=none -Xrunjdwp:server=y,transport=dt_socket,suspend=n,address=16125
When I debug, I am able to look into the class level & static variables, but couldn't look into the local variables.
I changed the jre in eclipse also to use the one provided by Weblogic but it doesn't make any difference.
Can anyone please let me know what am I missing here.
regards,
Vishnu
-
Weblogic Remote Debugging in Eclipse Local variables (2 messages)
- Posted by: vishnuvardhan ramaraj
- Posted on: December 05 2005 18:13 EST
Threaded Messages (2)
- Compile with generate debug info option by vishnuvardhan ramaraj on December 06 2005 13:37 EST
- Re: Compile with generate debug info option by Kieran Simpson on August 12 2008 21:51 EDT
-
Compile with generate debug info option[ Go to top ]
- Posted by: vishnuvardhan ramaraj
- Posted on: December 06 2005 13:37 EST
- in response to vishnuvardhan ramaraj
I didn't compile with the -g option in javac while compilation for generating the debug information. -
Re: Compile with generate debug info option[ Go to top ]
- Posted by: Kieran Simpson
- Posted on: August 12 2008 21:51 EDT
- in response to vishnuvardhan ramaraj
I didn't compile with the -g option in javac while compilation for generating the debug information.
I'm having the same problem with local variables not being shown. I'm using Ant to compile my code and a verbose output shows [javac] '-g:lines, vars, source' So I know that debugging flags are getting passed to javac. Any ideas?