i want to fetch the content-length before i download a file like this:
- (void)fetchLengthDownload
{
fetchDownloadRequest = [ASIHTTPRequest requestWithURL:[NSURL URLWithString:downloadServer]];
[fetchDownloadRequest setRequestMethod:@"HEAD"];
[fetchDownloadRequest setTimeOutSeconds:40];
[fetchDownloadRequest setDelegate:self];
[fetchDownloadRequest setDidFinishSelector:@selector(requestFinishedDownload:)];
[fetchDownloadRequest setDidFailSelector:@selector(requestFailesDownload:)];
[fetchDownloadRequest startAsynchronous];
}
on Wifi it works like a charm, but on 3G my requestFinishedDownload is fired, but the content-length is zero!
- (void)requestFinishedDownload:(ASIHTTPRequest *)request
{
completeFileSize = [request contentLength];
}