You are right, the problem is related to the limit of 2 connections in IE.
Your best option is to move long requests to another domain (or subdomain) that will bypass the connection restrictions. Taking this idea further, you can use random subdomains with wildcard DNS to make the solution even better.
Remember that this has security implications for your code, as all current browsers block cross-domain requests by default. Your workarounds might include cross-site HTTP requests , JSONP, and various HTML5 features such as postMessage.
I described the problem in more detail here .
source share