Files over 2GB may fail due to a deficiency in WinHttp
[net/http/http_transaction_winhttp.cc]:
// WinHTTP truncates a response longer than 2GB. Perhaps it stores the
// response's content length in a signed 32-bit integer. We fail rather
// than reading a truncated response.
if (response_.headers->GetContentLength() > 0x80000000)
return ERR_FILE_TOO_BIG;
I haven't tried, but downloads > 2GB may work if using chunked
transfer coding, or if omitting the Content-Length header.
You can file a bug to track this here:
http://code.google.com/p/chromium/issues/entry
As chromium team is changing the http implementation, this may be
something we check for support of in the new network stack.
(you can preview the new stack to see if it solves the problem, by
passing chrome.exe the flag --new-http)
On Tue, Sep 23, 2008 at 3:41 PM, MABalt <[EMAIL PROTECTED]> wrote:
>
> Hello,
>
> I was recently trying to download a large (2.56 GB file) from a
> website registered through my University. While attempting to download
> there is a note that it cannot be downloaded with Internet Explorer
> due to IE's download limit. They recommend using a browser that does
> not have a download limiter. When I attempted to download the file
> (its a ZIP archive) through Google Chrome, it downloads an empty
> archive. The only browser I could get the download to work in (or at
> least of the browsers that were on my computer) was Mozilla Firefox.
>
> I am running Windows XP 32 bit on a Dell Laptop with an Intel Dual
> Core.
> >
>
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Chromium-discuss" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/chromium-discuss?hl=en
-~----------~----~----~----~------~----~------~--~---