Re: connections appears to be not closing

2011-08-11 Thread Wilker
Hi, I discovered the problem... Is not my issue, the problem is with a third service that the server users... Its limiting the request and server is responding bad because of that... At least my code is fine, just need to update server :) --- Wilker LĂșcio http://about.me/wilkerlucio/bio Kajabi Con

Re: connections appears to be not closing

2011-08-11 Thread Jens Alfke
On Aug 11, 2011, at 4:06 PM, Wilker wrote: > it seems that the upload connections are being retained after I > finish it, so, the connections are alive, blocking new ones... Weird. You should be able to issue as many requests as you want, and CFNetwork will reuse a pool of connections for them.

connections appears to be not closing

2011-08-11 Thread Wilker
Hi guys, I'm having a little complicated problem here... The main task of my software is do some complex operations on big lists. For managing the operations I'm using NSOperationQueue, so I'm limiting to 5 operations at once (these operations use a lot of HTTP connections). So, since I wanna hav