My project is using AFNetworking.
https://github.com/AFNetworking/AFNetworking
How do I dial down the timeout? Atm with no internet connection the fail block isn't triggered for what feels like about 2 mins. Waay to long....
|
My project is using AFNetworking. https://github.com/AFNetworking/AFNetworking How do I dial down the timeout? Atm with no internet connection the fail block isn't triggered for what feels like about 2 mins. Waay to long.... |
||||
|
Changing the timeout interval is almost certainly not the best solution to the problem you're describing. Instead, it seems like what you actually want is for the HTTP client to handle the network becoming unreachable, no?
Requests can take a long time on slow networks. It's better to trust iOS to know how to deal slow connections, and tell the difference between that and having no connection at all. To expand on my reasoning as to why other approaches mentioned in this thread should be avoided, here are a few thoughts:
|
||||
|
|
|
The pull request Lego mentions describes a way to do this as one of the comments, you just do:
but see the caveat @KCHarwood mentions that it appears Apple don't allow this to be changed for POST requests |
|||||||
|
|
Finally found out hot to do it with an asynchronous POST request:
I tested this code by letting my server If you need to do a synchronous POST request, do NOT use |
|||||||||
|
|
I think you have to patch that in manually at the moment. I am subclassing AFHTTPClient and changed the
method by adding
in AFHTTPClient.m line 236. Of course it would be good if that could be configured, but as far as I see that is not possible at the moment. |
|||||||||||
|
|
There has already been a pull request on that feature. See the comments: https://github.com/AFNetworking/AFNetworking/pull/133 |
|||
|
|
|
Based on others' answers and @mattt's suggestion on related project issues, here is a drop-in quickie if you are subclassing
Tested to work on iOS 6. |
||||
|
|
performSelector:afterDelay:...to manually cancel existing operations. Please see my answer for more details. – mattt Apr 8 '12 at 20:44