Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

10
votes
2answers
305 views

Blackberry debugging on Linux via bjdwp

I've gone down the long road of using Linux for Blackberry development. Currently that means: bb-ant-tools - for building net_rim_api.jar - and other Blackberry goodies from the Eclipse plugin 1.3.0 ...
6
votes
5answers
3k views

Recomend a (standalone) java debugger

As the title suggests what is a good debugger for Java? I've come from a C/C++/Ada background so I've become very accustomed to gdb :). On the java side I've only used jdb and jswat but I would like ...
5
votes
3answers
402 views

Break when a variable is assigned some value

I want jdb (which I'm using via the Eclipse debugger) to break when a variable is assigned some value. I'm not interested in setting a breakpoint at some specific line but rather more generally. For ...
4
votes
1answer
107 views

Inspect the return value of a method in jdb

Suppose in jdb I am at the following spot in the code: return 22; -->} How do I dump the value of the object (or primitive) that is going to be returned? It seems like a pain to have to store ...
4
votes
1answer
522 views

Android app debugging with command line jdb

I'm configuring emacs to debug android apps. My problem is since I'm attaching jdb to DDMS I cannot set proper classpath (jdb just won't start when I try to set -classpath and -attach together). So ...
4
votes
3answers
1k views

debugging android app with “jdb -attach” (or jswat)

I'm having troubles with using a stand-alone java debugger with android apps on emulator. Apparently, any remote-capable java debugger such as jdb (or jswat) could be leveraged, by following the ...
4
votes
2answers
256 views

JDB debugging of Groovy/Grails code

I'm attempting to debug some issues in some (rather bletcherous) Grails code that I inherited. I'm a relative noob in Groovy and Grails although an old Java guy. Here's the problem: I have this ...
4
votes
4answers
198 views

Cross-continent remote Java Debugging

When attaching the debugger in an IDE (IntelliJ or Eclipse) to a JVM running in another continent (london to new york) the lag is unbearable. I've waited in excess of 10 minutes for IntelliJ to ...
3
votes
2answers
566 views

How does Eclipse debug code in an application server?

What communication is going on between Eclipse and my application server (JBoss) when I run the server from within Eclipse in debugging mode? How does this work?
3
votes
3answers
1k views

Java jdb remote debugging command line tool

anyone have any experience using this? if so, is it worth while?
2
votes
1answer
77 views

No-hassle remote debugger for Java that's better than jdb?

I know how to do remote debugging in Java with both jdb and Eclipse. jdb leaves a lot to be desired in terms of a debugging UI, but there's no "setup" required - just run jdb -attach ... and bam ...
2
votes
3answers
363 views

Use a jar with source as source for jdb?

I have a executable jar with source compiled in and I want to debug it using jdb (no other debugger available in this environment unfortunately). I am able to debug it with jdb -classpath ...
2
votes
1answer
176 views

jdb with android apps - unable to open source file

I am hoping to use jdb to debug android apps in the emulator via the ddms go between. I have successfully set a breakpoint in my class' onCreate and the debugger (jdb) duly breaks. However if I try ...
2
votes
2answers
200 views

JDB — How to get a list of methods before running the program?

I'm learning JDB and running into a bit of a paradox. After starting JDB (with "jdb ClassName") most tutorials will tell me to type > methods ClassName to see a list of available methods so that ...
2
votes
1answer
107 views

Invoking debug session in Eclipse outside Eclipse

How to run debugging session in Eclipse but to invoke it outside Eclipse (instead of doing Run->Debug I want to invoke some process (maybe jdb?) that will start debug in Eclipse). Is that possible?
2
votes
0answers
245 views

jdb conditional breakpoint

I remote debug my application using JDB, just JDB, no IDEs, is there a way in jdb to set a conditional breakpoint? eg: stop at MyClass:80 when mystr.equals("abc")
1
vote
1answer
39 views

JDB ignores breakpoint for method in Scala object

I am using JDB to debug Scala code, and it mostly works so far. However, one particular breakpoint is never hit, and it is set on a method of a Scala object (on method entry, not on a particular line ...
1
vote
0answers
46 views

jsadebugd/jdb and running clear JVM

Using jsadebugd or jdb it's possible to debug already running JVMs, started without any arguments. I don't understand how it's possible, because I thought, that JVM compiles bytecode in native code by ...
1
vote
1answer
53 views

What is “bci” while debugging in jdb?

While debugging with jdb on the command line, it shows me a status line after each step that looks like this: Step completed: "thread=main", [class name].[method], line=10 bci=20 What is bci and ...
1
vote
1answer
139 views

How do you run DDD for Java?

I was following this tutorial here and got a popup that says "cannot access class test" after I typed in %javac -g test.java %ddd -jdb test &
1
vote
3answers
130 views

Equivalent of GDB 'start' in JDB?

I'm a bit confused by JDB. Being fairly good at using GDB, I'm aware of the various simple commands used to control the execution, i.e. start, run, cont, step, stepi, break, etc. but there are a ...
1
vote
4answers
3k views

Android development : ddms from command line not seeing devices

=============================== *SOLVED * : see answer below I dont want to use Eclipse. From the command line: An emulator is running. adb server is running. "adb devices" lists correctly and I ...
1
vote
3answers
365 views

android with jdb confusion using waitForDebugger

I'd like to debug my Android application on my device (nexus one - not the emulator) using the command line. I'm confused at how to set a breakpoint using jdb in combination with ...
1
vote
1answer
102 views

What is the default properties that eclipse uses to launch a java process in its debugging mode?

I would like to connect to java process started by eclipse using a command line debugger but not sure what default properties of the eclipse launched java process are ? I wouldn't mind using ...
1
vote
3answers
288 views

How do I skip a breakpoint a set number of times in Java's jdb?

How do I skip a breakpoint a set number of times in jdb? jdb's help provides this hint: !! -- repeat last command <n> <command> -- repeat command n ...
1
vote
1answer
328 views

How do I print an array in Java's jdb debugger?

How do I print out the values of the byte array all at once? I seem to recall I could specify a memory range in gdb. Is similar functionality is available in jdb? I have a Java byte array: byte [] ...
0
votes
0answers
3 views

using JDB or BDB via a 3rd product, does it require specific license for JDB or BDB?

I am in a production environment, and use a mixture of OpenLDAP and OpenDJ solutions, both in which are using Berkeley DB and Java DB.. with OpenLDAP we needed to rebuild and compile OpenLDAP with ...
0
votes
0answers
23 views

Can I write scripts for JDB - the java debugger

I am using JDB to remote debug a program. Can I write scripts within JDB so that i can write loops and if-else conditionals to control how JDB executes and record the jdb output to a file. My ...
0
votes
1answer
31 views

How to debug GWT Projects in JDB?

I m having a GWT Eclipse Project , i m using Eclipse to debug the Project. The GWT Project is dependent on other projects too. Its really easy using Eclipse debugger, but consumes more memory. The ...
0
votes
0answers
93 views

Can a single java thread be killed from jdb?

In theory, the JDB (java debugger) allows for a single thread to be killed. In practice, is it possible? Here I attach jdb to my JVM, which has an agentlib at port 8000: $ jdb -attach 8000 > I ...
0
votes
1answer
40 views

Oracle JDB Thin Client - Unique index with varchar2 not used

First som basics. Java 6 OJDBC6 Oracle 10.2.0.4 (also the same result in 11g version) I am experiencing that a sql statement is behaving differently when executed from Java with the OJDBC6 client ...
0
votes
0answers
38 views

How to dump an array in jdb

(I have seen this question but it doesn't work for me) I am using jdb: http-8080-4[1] dump response.headers response.headers = { serialVersionUID: 7932373258809348405 ...
0
votes
1answer
106 views

Debugging Android apps from JDB(within Emacs)

Ok, so I've been trying to debug Android apps from jdb. I run the emulator, install the app, run ddms and then I launch the app and then select it in DDMS. Now I run jdb with the following command ...
0
votes
1answer
71 views

Debugging with jdb

Trying to figure out my way around Sphinx 4 (the CMU speech recognition engine in Java), I tried to use a demo included with the distribution by altering it to what I wanted it to do (the name of the ...
0
votes
1answer
111 views

Facing Issue with JDB - Breakpoint not being hit

I have the following piece of code: void func() { try { f1() } finally() { if (resource != null) resource.close(); } } I put three breakpoints: call to f1(), inside ...
0
votes
0answers
103 views

Exception when querying Siebel objects using JDB

I'm tyring to use Siebel JDB to query Siebel Business Objects/Business Services. for example: SiebelBusComp sbc = m_db.getBusObject( "Repository Business Object" ).getBusComp("Repository ...
0
votes
1answer
260 views

jdb and jde with emacs ( name unknown)

main[1] print myVariable com.sun.tools.example.debug.expr.ParseException: Name unknown: myVariable myVariable = null Any guesses as to why this might be happening? I can place breakpoints like I'm ...
0
votes
2answers
709 views

Debugging Java projects where a .jar file contains the main method

For a class exercise on game trees, I have to write code that works with a .jar file. I haven't used Java in this way before. My Eclipse project tree looks like this: To run the code, I was told to ...
0
votes
2answers
810 views

“Failed to attach to the remote VM” connecting jdb to the android emulator on Windows

I’ve been trying to connect jdb to the android emulator for a little while, and have been met repeatedly with: jdb -sourcepath ./src -attach localhost:8700 java.io.IOException: shmemBase_attach ...
0
votes
4answers
456 views

Debugging a Java program running from Tomcat (JSP)

I don't know why I never found myself having to use a debugger to step through my program and see what was going on, probably because I'm used to using interpreted languages such as PHP where it ...
0
votes
1answer
171 views

Print variables in java jdb debugger

Is it possible to view variables, passed as arguments in function, if class was compiled without debug flag? I successfully put breakpoint on call, but after that i don't know how to view arguments ...
0
votes
1answer
694 views

How do I pass console input to a running Java program instead of to jdb?

Debugging my code with Java's jdb. Am stuck at a point where my program expects command-line input, but jdb intercepts it as a jdb command. How do I tell jdb to pass through text to the running ...
0
votes
1answer
634 views

Print multiple variables with one command in jdb

How can I print multiple local primitives with one command in jdb (verison 1.4)? I've tried: print v1, v2, v3 but that only prints out the value of v1. Any suggestions? Edit: Effectively I need ...
0
votes
1answer
244 views

How to script the java debugger command-line tool (jdb)?

How can I drive the debugging session with some scripting language like ruby? Is there any easier options than using Expect or some similar module with a scripting language?
-1
votes
1answer
765 views

retrieve data from database using jsf [closed]

following is my code my bean enter code here import java.util.logging.Level; import java.util.logging.Logger; import javax.faces.bean.ManagedBean; import javax.faces.bean.SessionScoped; import ...