NSURL请求请求超时

时间:2013-09-25 07:03:16

标签: objective-c json nsurlconnection nsurlrequest request-timed-out

我有一个奇怪的问题,我正在处理一个我要从服务器请求的项目,当使用URL方法请求没有参数的GET时,它工作正常并返回所需的数据,但是当使用相同的代码调用URL并向其发送参数时,它会因此错误而失败:

error: Error Domain=NSURLErrorDomain Code=-1001 UserInfo=0xed4870 "timed out"

我的代码如下:

NSString *param = @"pageNumber=2";

NSURL *url = [NSURL URLWithString:@"http://myWebsite/api/Soccor/"];//When using this, it works fine
NSURL *url = [NSURL URLWithString:[NSString stringWithFormat:@"http://myWebsite/api/Soccor?%@", param]];//When using this, it gives me the request time out error.
NSMutableURLRequest *theRequest = [NSMutableURLRequest requestWithURL:url];
[theRequest addValue:@"application/json;charset=UTF-8" forHTTPHeaderField:@"Content-Type"];
[theRequest addValue:@"application/json" forHTTPHeaderField:@"Accept"];
[theRequest addValue:msgLength forHTTPHeaderField:@"Content-Length"];
[theRequest setHTTPMethod:@"GET"];
[theRequest setTimeoutInterval:10];
NSURLConnection *theConnection = [[NSURLConnection alloc] initWithRequest:theRequest delegate:self];

使用URL发送参数时,为什么会返回错误的任何线索?

1 个答案:

答案 0 :(得分:1)

我建议您考虑请求的两个方面:

  1. 您没有向我们展示您msgLength的设置,但如果您还使用Content-Length,我建议您设置一个setHTTPBody标题,在这种情况下,您可以d将Content-Length设置为您用作length参数的NSData的{​​{1}}。但这与setHTTPBody次请求一起使用,而不是POST次请求。

  2. 您为请求的GET指定application/json,但请求不包含JSON。如果你这样做是因为响应是JSON,那么应该注意这个标题值是针对你的请求的,而不是你期望从服务器得到的响应。