we have a bug with ie8(under XP), and ie9 (under 7) doing several RPC GWT calls. Eventually, one of the calls fires but server responds with a reset (RST) and the application keeps waiting the result until a 12002 http error is received (12002 seems to mean TimeOut) after some minutes.
Some keys:
- We can not reproduce the bug in Other browsers.
- We have fired hundreds of the same RPC calls using prototype.js in ie8 and it never fails! So, we can only reproduce it inside gwt code.
- it is a random thing. some time it happens three seconds after the first call others three minutes after.
- in a client with windows server 2003 the http error is 12030 instead of 12002 and it happens immediatly.

Any Idea?
This is not a GWT problem. This is an AJAX problem.
In addition I’ve seen it can happen in FF too.
But IE with nested callbacks really aggravated this.
The link below really helped, but it did not solve the problem 100%.
Why does IE issue random XHR 408/12152 responses using jQuery post?
It suggests that the problem will be solved if you close the HTTP connection for each request on the servlet.
The problem disappeared when we moved to Server 2008/Tomcat.
With Server 2003 the IIS was full of errors.
Also this link is useful