views:

313

answers:

2

Hi

I'm trying to upload to amazon s3 using FileStream and UrlRequest.

But it seems I can only upload 2 files simultaneously.

Is there a reason for this? How can I work around this?

Also would this affect web service calls to a SOAP web service on the same domain?

Thanks,

+1  A: 

Looks like this is linked to the limit on the number of concurrent HTTP connections per server which is two.

More details check this link :

http://www.openajax.org/runtime/wiki/The%5FTwo%5FHTTP%5FConnection%5FLimit%5FIssue

Ya I think this may also affect simultaneous HTTP based SOAP Web Service requests also.

shivaspk
A: 

It's a concurrent HTTP connection thing. It will vary by service. Though I am surprised Amazon S3 allows only 2. That's fairly draconian.

Jasconius