I have a server that is failing to download files over 40mb from IIS6 on Windows Server 2003. The HTTPERR log shows Connection_Abandoned. The request does not show in the IIS log. Fiddler shows that no response was received from the server. There's no error in the event log. UrlScan is not installed.
We've tried directly linking to the files and also downloading through an ASP.NET page that serves the file (not a redirect, it uses Response.WriteFile
. We've tried several files, everything under 40mb works and everything over 40mb fails.
Sounds like a maxRequestLength issue. You should be to update web.config: http://weblogs.asp.net/jeffwids/archive/2009/09/24/from-iis6-maxrequestlength-to-iis7-maxallowedcontentlengthfile-specifying-maximum-file-upload-size.aspx -Chris