vote up 0 vote down star

Is there a security limit to the number of AJAX XMLHttpRequest objects you can create on a single page? If so, does this vary from one browser to another?

flag

3 Answers

vote up 0 vote down check

I don't think so, but there's a limit of two simultaneous HTTP connections per domain per client (you can override this in Firefox, but practically no one does so).

link|flag
vote up 0 vote down

Yes, as Kevin says, HTTP/1.1 specifications say "A single-user client should not maintain more than 2 connections with any server or proxy."

link|flag
vote up 0 vote down

I've found it easier to pool and reuse XMLHTTPRequest objects instead of creating new ones...

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.