When doing a large upload in ASP.NET, the transfer fails with the error "System.OutOfMemoryException". The stacktrace contains the following:
[OutOfMemoryException: Exception of type System.OutOfMemoryException was thrown.]
This exception is thrown by the .NET runtime and not our product. The error is caused by .NET reading in the entire contents of a POST into memory. As a result the OutOfMemoryException error message is thrown and the ASP.NET worker process will recycle itself. |