2

我对我们的网络服务的请求遇到了一个奇怪而烦人的问题。
我正在尝试通过 NSURLRequest 和 NSURLConnection 方法通过 JSON(以及其他一些内容)发送 base64 编码的字符串。

下面的代码适用于小型 base64 编码图像,例如 64x64 像素头像,但由于某种奇怪的原因,它不适用于较大的 b64 字符串,它返回“错误请求,400”错误。
我正在使用 POST 方法,字符串长度约为 10,000 个字符。Web 服务适用于除了这些大字符串之外的所有内容,我尝试了 3 种不同的 b64 解析解决方案,但没有一个可以工作。
不幸的是,我是前端编码员,几乎没有网络服务经验,因此不胜感激。

    NSData *postData = [JSONRequest dataUsingEncoding:NSASCIIStringEncoding allowLossyConversion:YES];
    NSString *postLength = [NSString stringWithFormat:@"%d", [postData length]];

    NSMutableURLRequest *request = [[NSMutableURLRequest alloc] init];

    [request setURL:[NSURL URLWithString:URLRequest]];
    [request setHTTPMethod:@"POST"];
    [request setValue:postLength forHTTPHeaderField:@"Content-Length"];
    [request setValue:@"application/json" forHTTPHeaderField:@"Content-Type"];
    [request setHTTPBody:postData];
    [request setTimeoutInterval:9999.0f];
    [request setCachePolicy:NSURLRequestReloadIgnoringCacheData];
    [request setHTTPShouldUsePipelining:NO];



    NSURLConnection *connection = [[NSURLConnection alloc]initWithRequest:request delegate:delegateData];

    [connection start];
    [connection release];
    [request release];
    NSLog(@"Connection to %@!",URLRequest);

并在此处捕获响应:

-(void)connection:(NSURLConnection *)connection didReceiveResponse:(NSURLResponse *)response{

     NSLog(@"didRecieveResponse");

     // cast the response to NSHTTPURLResponse so we can look for 404 etc
     NSHTTPURLResponse *httpResponse = (NSHTTPURLResponse *)response;
     NSLog(@"Response:%@ StatusCode: %i",[NSHTTPURLResponse localizedStringForStatusCode:[httpResponse statusCode]],[httpResponse statusCode]);
     if ([httpResponse statusCode] >= 400)
         // do error handling here
}

有什么我想念的吗?

4

1 回答 1

1

似乎服务器响应是由于处理大型请求时的 Web 服务配置。
虽然我没有直接参与该项目的服务器端方面,但讨论过它是以下各项的组合:
服务器缓存
连接超时间隔
连接数据包丢失/服务质量问题。

AKA,这是一个服务器端问题,而不是 iOS 特定的客户端问题。

于 2013-02-27T00:40:19.313 回答