Where can I find out about the JVM debugger protocol?

I want to do a test and build a simple C ++ debugger GUI that debugs Java as I read from the docs view, I will have to work with the JVM debugger protocol does anyone have any experience here? where can I find out about this? thanks

0


a source to share


3 answers


Sun's Java Virtual Machine Debugging (JVMDI) Reference is a good place to start.



+1


a source


The official documentation home is here: http://java.sun.com/javase/technologies/core/toolsapis/jpda/



There are API references and low-level wire protocols that Java debuggers can use.

0


a source


You can try looking at the source code of the Eclipse Java IDE project ... This is the best Java debugger I've used ... if you can replicate this user experience it would be phenomenal ...

http://wiki.eclipse.org/CVS_Howto

0


a source







All Articles