Tagged Questions

5
votes
7answers
392 views

Which Java debugger do *you* use

I spend a lot of time debugging applications in Eclipse using JPDA. There are a few issues with the Eclipse debugger which really annoy me. Can anybody recommend plug-ins, better debuggers or perhaps ...
3
votes
2answers
66 views

java debugging - watch an out of scope variable

When debugging a C/C++ application I can create a watch of an address cast to a pointer type and then view that contents of a structure even when it goes out of scope. Is it possible to achieve ...
3
votes
1answer
300 views

Java Access to Local Variable Names

I'm currently writing a program in which I would like to access the variable names of local variables during execution of a program and pass them off externally. I'm aware that Java will dump local ...
0
votes
2answers
68 views

Java API to turn on debugging in a running JVM

Is there a programmatic way to turn on debugging in a running JVM instance? I am looking for an API that would make a running JVM, a debug server. The API would do the equivalent of -Xdebug ...
0
votes
1answer
253 views

Why does Tomcat start with 0.0.0.0:8000 open?

I know the short answer is "You told it to." But of course, I'm not sure how I told Tomcat to start with the 8000 default debug port open, but on 0.0.0.0 instead of the expected 127.0.0.1. Here's a ...
0
votes
1answer
326 views

How to remote debug Tomcat (JPDA) when server has multiple virtual hosts running

Im trying to remote debug Tomcat (JPDA) on a server that is running two virtual hosts using the same Tomcat container. How do I ensure the debugger connects to virtual host A and not B. Thanks!
0
votes
1answer
157 views

How to connect Adobe Air client side with Java VM Debug Interface?

I'd like to know if/how would it be possible to connect Adobe Air application to Java VM Debug Interface? I have some objects residing on server side and don't want to change the code there and ...
0
votes
1answer
295 views

Learning to debug in Java

I'm both learning to use the JPDA on Netbeans and solving the Prime Generator problem of Sphere's Online Judge. I've been reading this tutorial on netbeans.org about he JPDA, but haven't found it ...