I'm writing an upload function, and have problems catching "System.Web.HttpException: Maximum request length exceeded" with files larger than the specified max size in httpRuntimein web.config (max size set to 5120). I'm using a simpled <input> for the file.

The problem is that the exception is thrown before the upload button's click-event, and the exception happens before my code is run. So how do I catch and handle the exception?

EDIT: The exception is thrown instantly, so I'm pretty sure it's not a timeout issue due to slow connections.

link|improve this question

Did anyone try this with MVC? I seem to be able to catch the exception in the right way, but I'm unable to stop it: every time I try to render an error page the same exception occurs. – Andy Jul 25 '10 at 12:46
feedback

6 Answers

up vote 29 down vote accepted

There is no easy way to catch such exception unfortunately. What I do is either override the OnError method at the page level or the Application_Error in global.asax and check if it was a max request failure then transfer to an error page.

protected override void OnError(EventArgs e) .....


private void Application_Error(object sender, EventArgs e)
{
 if (GlobalHelper.IsMaxRequestExceededEexception(this.Server.GetLastError()))
 {
  this.Server.ClearError();
  this.Server.Transfer("~/error/UploadTooLarge.aspx");
 }
}

It's a hack but the code below works for me

const int TimedOutExceptionCode = -2147467259;
public static bool IsMaxRequestExceededEexception(Exception e)
{
 // unhandeled errors = caught at global.ascx level
 // http exception = caught at page level

 Exception main;
 var unhandeled = e as HttpUnhandledException;

 if (unhandeled != null && unhandeled.ErrorCode == TimedOutExceptionCode)
 {
  main = unhandeled.InnerException;
 }
 else
 {
  main = e;
 }


 var http = main as HttpException;

 if (http != null && http.ErrorCode == TimedOutExceptionCode)
 {
  // hack: no real method of identifing if the error is max request exceeded as 
  // it is treated as a timeout exception
  if (http.StackTrace.Contains("GetEntireRawContent"))
  {
   // MAX REQUEST HAS BEEN EXCEEDED
   return true;
  }
 }


 return false;
}
link|improve this answer
1  
Thanks. OnError didn't work, but Application_Error did. We actually have a handler for this, but someone had turned it off in the code. – Marcus L Mar 20 '09 at 11:35
even two years ago, but I still want to ask whether this worked fine till now? does the string comparison of 'GetEntireRawContent' work fine? I don't think this is a timeout issue. is there anyone standing out for pointing me to uncloudy somewhere regarding this? – Milla May 18 '11 at 6:07
@Elaine yeah this technique still works with ASP.Net 4.0. If you attempt to upload a request that is greater than the maximum request length ASP.Net throws a HttpException with the timeout code. Have a look in System.Web.HttpRequest.GetEntireRawContent() using reflector. – Damien McGivern May 19 '11 at 10:00
thanks a lot for the update – Milla May 21 '11 at 16:35
4  
@sam-rueby I didn't want to reply on a string error message that could change due to localisation. – Damien McGivern Feb 12 at 19:15
show 2 more comments
feedback

As GateKiller said you need to change the maxRequestLength. You may also need to change the executionTimeout in case the upload speed is too slow. Note that you don't want either of these settings to be too big otherwise you'll be open to DOS attacks.

The default for the executionTimeout is 360 seconds or 6 minutes.

You can change the maxRequestLength and executionTimeout with the httpRuntime Element.

<?xml version="1.0" encoding="utf-8"?>
<configuration>
    <system.web>
        <httpRuntime maxRequestLength="102400" executionTimeout="1200" />
    </system.web>
</configuration>

EDIT:

If you want to handle the exception regardless then as has been stated already you'll need to handle it in Global.asax. Here's a link to a code example.

link|improve this answer
Thanks for your reply, but as I said in my comment to GK's answer this doesn't really solve my problem. It's not a timeout issue either, as the exception is thrown instantly. I'll edit the question to make that more clear. – Marcus L Mar 20 '09 at 9:57
See my edit for handling the error in Global.asax – Jonathan Parker Mar 20 '09 at 10:32
Yup, that did the trick. Thanks! – Marcus L Mar 20 '09 at 11:35
4  
The code example url points to a page that is not available...can anyone fix this? – deostroll Oct 11 '10 at 6:30
feedback

You can solve this by increasing the maximum request length in your web.config:

<?xml version="1.0" encoding="utf-8"?>
<configuration>
    <system.web>
        <httpRuntime maxRequestLength="102400" />
    </system.web>
</configuration>

The example above is for a 100Mb limit.

link|improve this answer
3  
Yes, and no. You push the limit further, but it doesn't really handle the exception. You'll still get the same problem if someone tries to upload 101+ Mb. The limit really needs to be 5 Mb. – Marcus L Mar 20 '09 at 9:50
feedback

Hi solution mentioned by Damien McGivern, Works on IIS6 only,

It does not work on IIS7 and ASP.NET Development Server. I get page displaying "404 - File or directory not found."

Any ideas?

EDIT:

Got it... This solution still doesn't work on ASP.NET Development Server, but I got the reason why it was not working on IIS7 in my case.

The reason is IIS7 has a built-in request scanning which imposes an upload file cap which defaults to 30000000 bytes (which is slightly less that 30MB).

And I was trying to upload file of size 100 MB to test the solution mentioned by Damien McGivern (with maxRequestLength="10240" i.e. 10MB in web.config). Now, If I upload the file of size > 10MB and < 30 MB then the page is redirected to the specified error page. But if the file size is > 30MB then it show the ugly built-in error page displaying "404 - File or directory not found."

So, to avoid this, you have to increase the max. allowed request content length for your website in IIS7. That can be done using following command,

appcmd set config "SiteName" -section:requestFiltering -requestLimits.maxAllowedContentLength:209715200 -commitpath:apphost

I have set the max. content length to 200MB.

After doing this setting, the page is succssfully redirected to my error page when I try to upload file of 100MB

Refer, http://weblogs.asp.net/jgalloway/archive/2008/01/08/large-file-uploads-in-asp-net.aspx for more details.

link|improve this answer
Sorry! I have added my query as an Answer, I don't know how to add comments to existing posts. – Vinod T. Patil Jul 7 '10 at 12:25
1  
You just need more rep. to comment posts. See the faq for more details about what you can/can't do with your current rep. – kbok Jul 12 '10 at 9:28
feedback

If you are wanting a client side validation also so you get less of a need to throw exceptions you could try to implement client side file size validation.

Note: This only works in browsers that support HTML5. http://www.html5rocks.com/en/tutorials/file/dndfiles/

<form id="FormID" action="post" name="FormID">
    <input id="target" name="target" class="target" type="file" />
</form>

<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.6.1/jquery.min.js" type="text/javascript"></script>

<script type="text/javascript" language="javascript">

    $('.target').change(function () {

        if (typeof FileReader !== "undefined") {
            var size = document.getElementById('target').files[0].size;
            // check file size

            if (size > 100000) {

                $(this).val("");

            }
        }

    });

</script>

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.