Problem debugging jdk1.5 program
Hi
I use IntelliJ to write and debug my programs. I am debugging a simple program and I get this error
FATAL ERROR in native method: JDWP No transports initialized, jvmtiError=JVMTI_ERROR_INTERNAL(113)
Warning: classic VM not supported; client VM will be used
ERROR: JDWP Transport dt_socket failed to initialize, TRANSPORT_LOAD(509) ["debugInit.c",L476]
Can someone help
[416 byte] By [
arya_18] at [2007-9-30 4:33:08]

Hello
You wrote:
> FATAL ERROR in native method: JDWP No transports
> initialized, jvmtiError=JVMTI_ERROR_INTERNAL(113)
> Warning: classic VM not supported; client VM will be
> used
> ERROR: JDWP Transport dt_socket failed to initialize,
> TRANSPORT_LOAD(509) ["debugInit.c",L476]
This indicates an old environment.
Make sure your environment is completely migrated to 1.5.
If you want to use the new language features in 1.5 (generics,
autoboxing, enhanced for loop, enumerated types, and so on),
remember to add "-source 1.5" to the javac command line.
For more information on 1.5:
http://java.sun.com/developer/technicalArticles/releases/j2se15/
http://java.sun.com/j2se/1.5.0/docs/relnotes/features.html