ramon_salla
ramon_salla

Reputation: 1607

GWT ie8 timeout 12002

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:

RST problem

Any Idea?

Upvotes: 4

Views: 2359

Answers (1)

Spiff
Spiff

Reputation: 4094

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

Upvotes: 4

Related Questions