up vote 4 down vote favorite
1
share [g+] share [fb]

I'm using the ASIHTTPRequest library to request some data from a server in my iPhone app. But i cannot figure out how to create a timeout so that if the server goes down or the iPhone doesnt have internet connection the app doesnt crash.

Thanks in advance

EDIT>>>

tt.Kilew your code doesnt work... I posted a bit of sample code

NSURL *url = [NSURL URLWithString:@"A URL WITH A FORM"];
ASIFormDataRequest *requestPOST = [ASIFormDataRequest requestWithURL:url];
[requestPOST setPostValue:un forKey:@"username"];
[requestPOST setPostValue:pw forKey:@"password"];           
[requestPOST setPostValue:@"Login" forKey:@"submit"];
[requestPOST start];

[requestPOST setTimeOutSeconds:10];

NSLog(@"Fail: %@", [requestPOST failWithError:ASIRequestTimedOutError]);
link|improve this question

feedback

3 Answers

up vote 8 down vote accepted
[request setTimeOutSeconds:10];

Update with more code:

NSURL *url = [NSURL URLWithString:@"A URL WITH A FORM"];
ASIFormDataRequest *requestPOST = [ASIFormDataRequest requestWithURL:url];
[requestPOST setPostValue:un forKey:@"username"];
[requestPOST setPostValue:pw forKey:@"password"];           
[requestPOST setPostValue:@"Login" forKey:@"submit"];
[requestPOST setTimeOutSeconds:10];
[requestPOST setDelegate:self]
[requestPOST startAsynchronous];

Failed handler:

- (void)requestFailed:(ASIHTTPRequest *)request {
    NSError *error = [request error];
    if ([error isKindOfClass:[ASIRequestTimedOutError class]]) {
        // Actions specific to timeout
    }
}

Success handler:

- (void)requestFinished:(ASIHTTPRequest *)request
{
   // Use when fetching text data
   NSString *responseString = [request responseString];

   // Use when fetching binary data
   NSData *responseData = [request responseData];

   // Do something with the response.
}
link|improve this answer
Does that return something? because i need to have a statement like if (timeout == true) { //Some Error message }else { //Proceed to next step } – Zen_silence Feb 21 '10 at 18:10
1  
That just tells your request that it should timeout after 10 seconds. If the request times out, it'll call your requestFailed: delegate which you can check for the ASIRequestTimedOutError (as explained by tt.Kilew below). – chrissr Feb 21 '10 at 18:13
Can you please post some sample code i cant get this to work at all – Zen_silence Feb 21 '10 at 18:35
More code added. – chrissr Feb 21 '10 at 18:48
Working Perfectly thanks... now i just have to rewrite my login function :( – Zen_silence Feb 21 '10 at 19:23
show 1 more comment
feedback

I normally check like this:

- (void)requestFailed:(ASIHTTPRequest *)request
{
    NSError *error = [request error];
    if([error code] == ASIRequestTimedOutErrorType)
    {
        // .. 
    }
}
link|improve this answer
feedback
// Number of seconds to wait before timing out - default is 10
NSTimeInterval timeOutSeconds;

If timeout will occur, you'll recieve

[self failWithError:ASIRequestTimedOutError];
link|improve this answer
That doesnt work look at the sample code i posted please – Zen_silence Feb 21 '10 at 18:21
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.