9

我正在使用 HTTP Post 方法并启动同步请求。[NSURLConnection 发送同步请求:..]

对于 HTTP POST 请求,默认超时发生在 75 秒,如许多线程中所述。

但是在 75 秒的超时时间段内,针对使用所有相同参数提出的相同请求,为我们启动了多个 Web 服务请求。

请让我们知道是什么原因导致这个多个请求被启动?这是由于一般的 HTTP POST 还是由于同步请求?

@iOS 示例代码

[body appendData:[[NSString stringWithFormat:@"\r\n--%@--\r\n", boundary] dataUsingEncoding:NSUTF8StringEncoding]];
[request setHTTPBody:body];
[request addValue:[NSString stringWithFormat:@"%d", body.length] forHTTPHeaderField: @"Content-Length"];

 [[NSURLCache sharedURLCache] setDiskCapacity:0];
 [[NSURLCache sharedURLCache] setMemoryCapacity:0];

 NSURLResponse *response;
 response = nil;

 urlData = [NSURLConnection sendSynchronousRequest:request returningResponse:&response error:&error];              
 if(urlData)
 {
        NSString *responseString = [[NSString alloc] initWithData:urlData encoding:NSASCIIStringEncoding];
        [self parseStringInformation:responseString infoDict:informationDictionary];
        //NSLog(@"%@",responseString);
 }
4

1 回答 1

1

如果没有服务器的请求-响应日志,则有多种可能性。

程序员错误:您是否已经经历过所有“gotchya”类型的情况?

Web 服务器响应:如果没有 Web 服务器日志(或您发布到的服务的代码),很难说...

API 错误:您发现了一些导致不必要的副作用的极端情况。也许苹果有错误跟踪器或开发者支持论坛?

于 2012-11-19T20:06:23.713 回答