Hi. This is not directly related to your blogposts (since you use virtualised jdwp, and not bjdwp (i.e. the Barry implementation of jdwp)), but I figured I'd ask it here anyway, since you seem to know a lot about BlackBerry development on non-Windows OSes.
After I run my app on a (physical) device, I start "bjdwp localhost 8000". After that, I can connect to this using "jdb -connect com.sun.jdi.SocketAttach:hostname=localhost,port=8000". After connecting, though, nothing seems to happen until I enter the resume command in jdb. Then it's smooth sailing.
I'd love to be able to debug using eclipse since it's a much more comfortable environment. I created a new debug configuration for this, as follows: a Remote Java Application with connection type = "Socket Attach", host = "localhost" and port = "8000". In other words, the same kind of connection as the jdb command. This doesn't work, however -- it keeps trying to connect.
Now, I assume this is because I need to do a resume, like I needed to do with jdb, but I can't do that from within eclipse (the resume button is greyed out).
Any suggestions?