Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Air Flex Uploads URLRequest maximum simultaneous

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,

like image 750
rid00z Avatar asked Feb 27 '26 15:02

rid00z


1 Answers

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_Two_HTTP_Connection_Limit_Issue

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

like image 159
shivaspk Avatar answered Mar 01 '26 16:03

shivaspk