I have an app that uses ASI-HTTP-Request for large files, and I had a tester recently note that they wer observing very long loading delays that should be manifesting as timeouts. I have delegate methods wired up for request failures, but these didn’t seem to be happening.
I poured through their documentation but didn’t see anything specific.
In
ASIHTTPRequest.m, look in the-checkRequestStatusmethod.When a timeout occurs, the request fails with an
ASIRequestTimedOutErrorerror type:So you should be able to check the error returned in the delegate’s
-requestFailed:method:It’s a good idea to read through the source to get a rough feel for how things work. The documentation is great, but not always in sync with the source code.