我正在开发一个使用 aNSMutableURLRequest
和 aNSURLConnection
将数据发送到我的服务器的 iOS 应用程序。我需要在失败时显示错误消息。我发送请求的代码如下所示
const int TIMEOUT = 120;
-(void)send:(id<NSURLConnectionDelegate>)delegate
{
bodyContents = [bodyContents stringByAppendingFormat:@"--%@--",boundry];
NSData *data = [bodyContents dataUsingEncoding:NSUTF8StringEncoding];
[request setHTTPBody:data];
[request setValue:[NSString stringWithFormat:@"%i",[data length]+4] forHTTPHeaderField:@"Content-Length"];
NSLog(@"Timeout before setting custom is %f",request.timeoutInterval);
[request setTimeoutInterval:TIMEOUT];
NSLog(@"Timeout after setting custom is %f",request.timeoutInterval);
NSURLConnection *connection = [[NSURLConnection alloc]initWithRequest:request delegate:delegate];
if(connection)
NSLog(@"Connection good");
else
NSLog(@"Connection not so good");
}
//in the delegate class
-(void)connectionDidFinishLoading:(NSURLConnection*)connection
{
NSLog(@"connectionDidFinishLoading");
}
-(void)connection:(NSURLConnection*)connection didFailWithError:(NSError *)error
{
NSLog(@"Failed with error %@",error);
btnCancel.title = @"Retry";
self.navigationItem.hidesBackButton = NO;
[self showAlertDialog:[NSString stringWithFormat:@"%@",[error localizedDescription]] :@"Error"];
}
我希望在 2 分钟无响应后调用 didFailWithError 消息。相反,它在大约 15 秒无响应后被调用,这没有任何意义。我查看了文档以检查我是否错误地设置了超时,我唯一能发现的是,带有正文的帖子的最小超时时间是 240 秒,我已经不情愿地接受了。
运行应用程序的输出如下所示:
2012-06-22 16:49:12.393 媒体上传 [672:707] 设置自定义之前的超时为 240.000000
2012-06-22 16:49:12.394 媒体上传[672:707] 设置自定义后超时为 240.000000
2012-06-22 16:49:12.395 媒体上传[672:707] 连接良好
2012-06-22 16:49:29.174 媒体上传[672:707] 失败,错误域=NSURLErrorDomain 代码=-1001“请求超时。” ETC
我对为什么它超时如此之快感到有点困惑。创建连接时服务器没有启动所以我什至不确定为什么它说连接好而不是连接不太好,但这是一个不同的问题(我希望)有什么建议吗?