the XMLHttpRequest object calls two TCP SYN packets when trying to send some POST data. This happens in less than a millisecond. I cannot reproduce this behavior in any other browser (tested with the latest Firefox and Google Chrome browser).
Even the βasynchronousβ flag or timeout parameter does not seem to change the situation.
The problem is that when IE9 sends two SYNs, they will be automatically allocated by the TCP / IP server stack. But unfortunately, IE9 then sends the Post data in the second stream, which means that the web server is already waiting for bytes in the first socket (it causes a timeout). This is because we are talking about one threaded web server that can process one socket at a time.
Any suggestions or ideas?
I would like IE9 not to install two sockets at once.
This happens regardless of whether I use the jjery ajax function or implement it myself in a java script.
Regards
Matthias
source
share