Fair comment.... i thought something like this may be the case... i have however just tried it in firefox and i have the same behaviour. even to the extent that if i press the ping button twice, i get four responses, all 3 seconds after each other... this using the same objects twice, and still creating a queue.
Could it be anything to do with a) using a shell command? i can only run one instance at a time? or b) my session is only allowed to access the same file with one connection? even though its a different query string?
Thanks anyway... its a strange one!
Main Topics
Browse All Topics





by: jkdt0077Posted on 2009-10-12 at 04:37:31ID: 25550263
Your code looks fine to be honest. Perhaps this is your problem:
Of course. However, you may not be able to send one request per XMLHTTPRequest object at the same time. Limits on allowed HTTP connections may force the second request (whichever request is made first [that is not which corresponding object is created first] would become the first one) into a queue. Internet
Explorer is known to be especially restrictive on the number of HTTP connections; for example Gecko-based UAs allow you to increase that value through a user preference.
Have you tried using any other browsers?