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.
Create two variables in the class to store the length of data currently downloaded and the length of data expected (you could do more elegant)
To know the lenght of expected data you have to get it from didReceiveResponse delegate
to update the downloadedLenght, you have to increase it in didReceiveData:
then it is possible to do any logic to compare if downloaded data fit your requirements in connectionDidFinishLoading
I had to do this to fix HJCache library issues with big pictures that downloaded incomplete (in HJMOHandler).