Java Debug Interface

learn more… | top users | synonyms

0
votes
1answer
23 views

Invoke static method in Java Debugger Interface (JDI)

In JDI, there is a method Value ObjectReference.invokeMethod(ThreadReference, Method, args list, int options) that invokes a method in the target (debuggee) VM. But how can I call a static ...
0
votes
0answers
14 views

Thread migration in java. Initializing thread with a given callstack

I'm currently working on a Java Process Migration Tool. The idea is to inspect the inner state of a java process (target VM), rebuilding it on a remote machine, stop the target VM and resume execution ...
2
votes
1answer
19 views

How do you get the enclosing instance of an instance? (com.sun.jdi)

com.sun.jdi is a package that lets you get information about a running VM, add breakpoints, look through stack frames, etc. How can I get the enclosing instance of another instance? For example, ...
1
vote
0answers
30 views

connecting to jvm

I want to get access to jvm heap to iterate over objects. I found following example of how this could be done. I use jdk1.7.0_11. I tried following code: public static void main(String[] args) { ...
0
votes
0answers
22 views

setting breakpoints when using launchingconnector of JDI

I am trying to build my own java debugger using JDI. LaunchingConnector lc=(LaunchingConnector)connector; arguments=lc.defaultArguments(); Connector.Argument main=(Connector.Argument) ...
3
votes
1answer
92 views

Can't run JDI trace example: Error: Could not find or load main class

I run in command line the following program as an example app: java -cp "D:\projects\PDFJavaFX\lib\PDFRenderer-0.9.1.jar" com/sun/pdfview/PDFViewer Then I run in command line the JDI trace ...
0
votes
1answer
35 views

Custom debugger to debug remote/local java application

I want to debug a remote java application using a java program(i don't mind using eclipse api in the program) but i don't want to debug it using eclipse GUI. Any suggestion/help will be greatly ...
2
votes
1answer
78 views

Using jpda to connect to weblogic

I am building a utility/tool to profile/trace the method calls in a Java EE application deployed in Weblogic 10 (java 6). The intention is to quickly understand the flow of events in our huge ...
1
vote
0answers
44 views

DebuggerStepThrough equivalent for Java

.NET has a couple of handy annotations that instruct a debugger to step through/over certain methods. I would like to know if there is an equivalent that works on the Java platform. For instance: ...
1
vote
1answer
48 views

Change class path to launch vm

First of all I am working on linux :) I am trying to launch a VM using JDI. I need to change the arguments in a connector. The connector is a LaunchingConnector connector from ...
7
votes
1answer
2k views

JDI Event Dispatch nullpointerexception

When I try to debug on my device I sometimes get an error and the debugger doesn't stop on any breakpoint. Also, the application doesn't even start properly, it just freezes at kinda black screen with ...
3
votes
1answer
1k views

How to import and use com.sun.jdi.VirtualMachine

I found some classes designed for debugging in package com.sun.jdi like VirtualMachine, but I can't use this because package seems not exist in Sun JDK7. How to use this package? BTW. lib/sa-jdi.jar ...
4
votes
2answers
399 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 ...
1
vote
1answer
324 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 ...
8
votes
2answers
1k 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
115 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.*") ...
1
vote
1answer
310 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 ...
11
votes
1answer
438 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 ...
3
votes
2answers
523 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 ...
1
vote
1answer
439 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, ...
10
votes
3answers
6k 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 ...
3
votes
3answers
2k 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
565 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 ...
12
votes
3answers
1k 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 ...