Thank you for the log file.
gradylen:So, when the user "cancels" the download and triggers the stream aborted exception, can you think of any situation where the mediachase component would do a 302 redirect? Or why the page would continute to post the remainder of the data and get a 400?
About 302, Mediachase FileUploader control redirects page if you turn on redirect and
if(content_length/1024 < McHttpModule.httpPostMinSize)
or
if(content_length/1024 > McHttpModule.httpPostMaxSize)
MinSize and MaxSize is integer that represents the minimal POST request size
in kilobytes.
About 400, I've discovered several ASP.NET problems when HTTP 400 can be thrown:
http://forums.iis.net/t/1105360.aspx
http://www.eggheadcafe.com/community/aspnet/6/2787/bad-request.aspx
http://www.egilh.com/blog/archive/2006/04/27/2632.aspx
http://support.microsoft.com/kb/826437
gradylen:
We do have the file uploader configured to do a redirect if the posted file is too big...but thats set for 10mb and the bytes transfered in this scenario is way less.
Show me your fileuploader web.config section.
Please, comment
Redirect attribute, wait and compare old and new result.
I'm waiting for your response.