I use sendSynchronousRequest:returningResponse:error method of NSURLConnection class to get NSData from network.
NSData *urlData = [NSURLConnection sendSynchronousRequest:request returningResponse:&response error:&error];
What I want to do is to check if returned value is valid or not. So, what I did was to compare the length of the data with expected length in response header as below.
NSData *urlData;
do {
urlData = [NSURLConnection sendSynchronousRequest:request returningResponse:&response error:&error];
if ([urlData length] != [response expectedContentLength]) {
NSLog(@"WTF!!!!!!!!! NSURLConnection response[%@] length[%lld] [%d]", [[response URL] absoluteString], [response expectedContentLength], [urlData length]);
NSHTTPURLResponse *httpresponse = (NSHTTPURLResponse *) response;
NSDictionary *dic = [httpresponse allHeaderFields];
NSLog(@"[%@]", [dic description]);
}
} while ([urlData length] != [response expectedContentLength]);
However, I don't know if it is enough to ensure the integrity of returned data. I can't check checksum of the file on the remote server.
Can you share your experience or other tips?
Thanks.
