Link to home
Start Free TrialLog in
Avatar of roy_sanu
roy_sanuFlag for India

asked on

ajax response

I have observed following behavior in IE 11.

When we have two ajax requests in currently waiting for the response from the server (asynchronously) – when a third sync request is made – it keeps on waiting for the first two to complete and then starts sending the request to the server.

Is there any limit on # of parallel requests that can be send in IE 11 from the same session to the same domain.
Avatar of Mukesh Yadav
Mukesh Yadav
Flag of India image

This is because of the session lock when we send a request to the server it locks the session till this request doesn't completes and the next request waits for the the session to start using it and same for the third request;

If you are using PHP then you can use session_write_close(); to close session and continue execution of the current request without blocking the next requests
ASKER CERTIFIED SOLUTION
Avatar of Dave Baldwin
Dave Baldwin
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial