Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

11
votes
1answer
351 views

Implement different stratum for Java Debugger Interface

In the Java Debugger Interface documentation for the Location class, there's a paragraph discussing the "stratum" of the location. I've been looking around a bit for more detail on how one would go ...
6
votes
2answers
3k views

JDI Thread Evaluations has encountered a problem

I'm running Eclipse for Java. I created a DOM version of an XML file. Now I want to change an attribute of an element in the file. I called a method that called a method in the class that controls the ...
6
votes
3answers
906 views

Why does the debugged program slow down so much when using method entry debugging?

I'm using jdi interfaces to create a debugger and when I use MethodEntryRequests to enable method entry tracing the debugged program slows down by factor of tens. I have set filter for main thread and ...
3
votes
2answers
85 views

JDI: How to pause a Java application (JVM) like in the debugger

I am looking for potentially a JDI API to pause the JVM at any arbitrary point during its execution. Looking at the BreakPointRequest createBreakpointRequest method needs a specific location. Is there ...
3
votes
1answer
315 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 ...
2
votes
3answers
893 views

Can Ant launch two java applications concurrently?

I am currently developing a "debugger" java application that uses JDI to connect to an already running "target" java application. Is there any way to have Ant launch my target application then launch ...
2
votes
1answer
457 views

Java plugin development with debug interface problem

Hello i'm trying to develop an eclipse plugin (in eclipse) that uses the Java debugging interface and i'm getting the following error: Access restriction: The type VirtualMachine is not accessible ...
1
vote
1answer
72 views

Java Debug Interface: put the breakpoints at arbitrary locations in the code

I an using the Java Debug Interface API to write the custom programs for debugging the Java applications I write. I am able to add breakpoints to the start of required method invocation by using the ...
1
vote
1answer
150 views

ObjectReference underlying object in JDI and JPDA

Very specifically, in JDI and JPDA context, I have the following questions: Why ObjectReference does not expose its underlying object? Is it based on some specification? Are all implementations ...
1
vote
1answer
123 views

During debugging, how to evaluate a piece of code in the debug target VM?

During debugging, e.g. in Eclipse, one can evaluate Watch Expressions or Conditional Breakpoints. Typically, these are evaluated on the client side. For instance, when debugging from within Eclipse, ...
0
votes
0answers
260 views

An internal error occurred during: “JDI Event Dispatch” java.lang.NullPointerException

I have my java applet codee,I am trying to debug using eclipse Indigo EE. I am trying to debug on remote using debug configuration and port. When I try to execute the application, it gives always an ...
0
votes
0answers
45 views

JDI/JPDA Event Filtering

In JDI, there is the API to exclude events from processed events in JVM used by JPDA. This is done using: addExclusionFilter(String) to exclude some pattern; e.g. addExclusionFilter("java.*") ...