I'm running Eclipse for Java. I created a DOM version of an XML file. Now I want to change an attribute of an element in the file. I called a method that called a method in the class that controls the DOM, and I got a dialog box saying "JDI Thread Evaluations has encountered a problem. Exception processing async thread queue" while debugging.

I'm a relative newbie at Java and have not come across such an error, and I have no idea what's causing it.

If anyone has any suggestions as to the cause of the problem and/or ways to fix it ...

Thanks so much!

link|improve this question

69% accept rate
feedback

2 Answers

up vote 3 down vote accepted

The Java Debug Interface (JDI) is part of the Java Platform Debugger Architecture. One apparent way to trigger this exception occurs when an object's toString() method carelessly returns null. There's an interesting discussion here. You might want to try a different debugger, and it wouldn't hurt to validate your XML.

link|improve this answer
interestingly enough, the next time I tried to run/debug the program, I didn't have any trouble. – chama Feb 16 '10 at 16:00
Indeed, several discussions mentioned intermittent failures. This always makes me think of thread synchronization problems: a deferred initialization, for example, that might appear null to one thread but not another. – trashgod Feb 16 '10 at 16:38
feedback

Keep an eye on your "Watch" expressions - if you don't need them, remove them all. Sometimes certain watch expressions have caused this error message for me.

This might also explain why it happens to intermittently for people (sometimes they have watch assignments that cause the error, however restarting or removing the right watch can solve the issue without them knowing it.)

link|improve this answer
Your tip saved me a lot of time. Thanks a lot. – Marcio Andrey Oliveira Sep 29 '11 at 14:11
Glad to help - it was driving me crazy too – Anthony Sep 30 '11 at 0:24
This is the correct answer! – mattboy May 12 at 15:06
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.