D
DotNet Dude
Looking for any and all ideas on how to resolve the following problem
I'm having:
I'm writing a file upload web application for the following
environment:
Windows 2003
IIS 6.0
SSL
Client Certificate Required
ASP.NET 2.0
I've been able to do a 65 Meg file without issue, but when I try an 80
Meg file, I get the following error:
"Insufficient system resources exist to complete the requested
service."
or I get a HTTP Status Code of 500, and the sc-win32-status in the iis
log
is 1450 which corresponds to the above message
I've implemented the code as a module, and at this point, I'm even
doing anything with the contents of the request (I've disabled the
code that would write the file to disk on the server).
I've tweaked the following parameters:
I've tried adjusting the maxRequestLength in the web.config, but don't
believe this is necessary given the way I've implemented the upload
code (i.e. in a module vs. using the FileUpload control).
I've set the UploadReadAheadSize property in the metabase to 120 Meg,
and though that fixed the 413 error I was getting before this, it
doesn't help with this problem.
I've also set the AspMaxRequestEntityAllowed property in the metabase
to 120 Meg.
Any thoughts?
I'm having:
I'm writing a file upload web application for the following
environment:
Windows 2003
IIS 6.0
SSL
Client Certificate Required
ASP.NET 2.0
I've been able to do a 65 Meg file without issue, but when I try an 80
Meg file, I get the following error:
"Insufficient system resources exist to complete the requested
service."
or I get a HTTP Status Code of 500, and the sc-win32-status in the iis
log
is 1450 which corresponds to the above message
I've implemented the code as a module, and at this point, I'm even
doing anything with the contents of the request (I've disabled the
code that would write the file to disk on the server).
I've tweaked the following parameters:
I've tried adjusting the maxRequestLength in the web.config, but don't
believe this is necessary given the way I've implemented the upload
code (i.e. in a module vs. using the FileUpload control).
I've set the UploadReadAheadSize property in the metabase to 120 Meg,
and though that fixed the 413 error I was getting before this, it
doesn't help with this problem.
I've also set the AspMaxRequestEntityAllowed property in the metabase
to 120 Meg.
Any thoughts?