The xdr.js code doesn't seems to work in current IE9 on a Windows 2008 Terminal Server.
The server log show connection aborted.
wraping xdr.send() in a setTimeout like this
setTimeout(function(){ xdr.send( ( s.hasContent && s.data ) || null ); }, 0);
make it work. (Remark, only tested with no s.data, so probably need a closure.)
That solution was inspired by:
https://developer.mozilla.org/en-US/docs/Web/API/XDomainRequest
See the note, in my case however there was no multiple concurrent request, but the problem was still there.
The xdr.js code doesn't seems to work in current IE9 on a Windows 2008 Terminal Server.
The server log show connection aborted.
wraping
xdr.send()in a setTimeout like thissetTimeout(function(){ xdr.send( ( s.hasContent && s.data ) || null ); }, 0);make it work. (Remark, only tested with no s.data, so probably need a closure.)
That solution was inspired by:
https://developer.mozilla.org/en-US/docs/Web/API/XDomainRequest
See the note, in my case however there was no multiple concurrent request, but the problem was still there.