score:1
I am not sure but I have got this plenty of times. It comes when I debug the application, and I think it occurs when the debugger tries to wrap a exception which arises due to code. At one instance while debugging when I see the logs I get some business exception, but while debugging it gave me com.sun.jdi.internalexception
.
Yes I do remote debugging the servers JVM so it could also be beacuse the debugger isn't correctly connecting to the remote version as you pointed out
score:4
Just to be sure: are you remote debugging some instrumented code ?
Because there seem to be some problems with JProfiler...
score:5
If you have the "Logical Structures" turned on in the Expressions tab while debugging, this seems to still cause issues even in Eclipse IDE version 4.11.0. Turning it off helped me. It is not a "solution" per se rather a work-a-around.
See the Eclipse Bug 48815
score:6
I have also faced with same issue on local server.
But, it was the issue of for
loop.
I was using:
for(Object obj: list)
{
for(Object obj2 : list)
{}
}
When I replaced that code by simple for loop (index based), it resolved the above issue. I think for each loop not able to iterate another list of same Type in same loop. Work around for this is replace that for loop to index based for loop.
score:27
It looks like the problem is related to the new debug feature "Show method result after a step operation": See the thread Eclipse Oxygen - Debugging Issue on the Eclipse forum:
The workaround is to go to Preferences -> Java -> Debug and disable the option "Show method result after a step operation (if supported by the VM; may be slow)".
See also the bug report in the Eclipse Bugzilla Bug 531706 - Oygen.2 com.sun.jdi.InternalException: Got error code in reply:35 while debugging
Source: stackoverflow.com
Related Query
- Using the Eclipse remote debugger throws com.sun.jdi.InternalException
- Samsung Remote Test Lab (RTL) : how to bind the device to Eclipse / debugger
- Using Eclipse as Node.JS Remote Debugger (Connection Refused)
- How to find the class that throws an exception in Java using Eclipse
- Am I using the eclipse debugger wrong?
- Eclipse throws the error "Data cannot be resolved to a type" for using the Project Lombok
- Multiple contexts with the same path error running web service in Eclipse using Tomcat
- How to delete a branch in the remote repository using EGIT?
- Eclipse 3.7 (Indigo) + Tomcat7 --- Cannot create a server using the selected type
- Eclipse 4.2 (Juno) 'Cannot create a server using the selected type' in Tomcat 7
- is it possible to "go back" in java eclipse debugger like dragging the arrow in VS
- Attach debugger to application using Eclipse
- How do I run Eclipse using Oracle's new 1.7 JDK for the Mac?
- Using the Android SDK on a Mac, Eclipse is really slow. How can I speed it up?
- Using both Eclipse and NetBeans on the same project
- How do I merge a CVS branch into HEAD using the Eclipse merge tools?
- How can I go to the next Eclipse marker (e.g. build error) using the keyboard?
- what is the id=yyy next to variable entries in the eclipse debugger
- How do I use the Eclipse debugger in an AsyncTask when developing for Android?
- what's the keyboard shortcut to toggle breakpoint in pydev using eclipse
- How to install Eclipse + PHP Development Tools (PDT) + Debugger on Mac in The Year 2011
- Eclipse on the Mac... using Windows keyboard shortcuts?
- Is there a way in the Eclipse debugger to be notified when the state of a Java object changes?
- Eclipse Java remote debugger extremely slow over VPN
- Connect Eclipse RSE with remote Linux server using public key attained from Amazon ec2
- How to set JVM arguments in tomcat that work both in eclipse and using the startup.bat
- Kotlin And Java In The Same Project Using Eclipse IDE
- Stacktrace inside of the eclipse debugger
- When using Eclipse with FindBugs can you mark a bug as not a bug and have it removed from the bug list?
- How can I view the outline in eclipse when using the revealing module pattern?
More Query from same tag
- eclipse debug variables export or print
- How to set java package for persisted entities in Eclipse JPA
- Eclipse auto completion irritation
- Can you save groups of tabs in Eclipse so you can open them later?
- Set data to programmatically opened View in Eclipse
- Need Help - Java Else/If Statement
- Maven packaging images in the root of the jar file
- Difficulties in developing a maven web project in eclipse
- "Visual Page Editor has experimental support for Windows 64-bit"
- c++ files to include for boost : asio
- Project has no project.properties file! Edit the project properties to set one error
- Do I need a separate Eclipse for android ADT development.?
- how to run java app in eclipse
- How can I debug Python code without running a script (using Eclipse)?
- JIRA-Eclipse Integration, steps to integrate jira with eclipse-oepe-indigo
- implementing the NWalign.java alignment script for needleman wunsch algorithm
- Jasper report artifact always corrupted
- Issue with GearVR development after exporting as Google Android Project
- Eclipse rename EditorPart
- Integrating Gluon Scene Builder into Eclipse?
- Trouble Updating Title in JInternalFrame GUI component
- How to reference resource bundle?
- Ubuntu Eclipse Icon Creation
- Eclipse 4.6 and GWT Designer
- Eclipse .classpath file. How to control server name entry?
- Makefile on Eclipse to create filename with date and time
- Install gwt 2.1 over 2.4
- Loop through multiple JSON array
- ClassNotFound exception after adding external jar
- Trying to implement Moxtra to my Android application, its giving me an Heap Space error. Any Solutions?