vote up 1 vote down star

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.

flag

3 Answers

vote up 1 vote down check

There is no easy 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|flag
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. – M. Nilsson Mar 20 at 11:35
vote up 1 vote down

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|flag
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. – M. Nilsson Mar 20 at 9:50
vote up 1 vote down

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 like so:

<?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|flag
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. – M. Nilsson Mar 20 at 9:57
See my edit for handling the error in Global.asax – Jonathan Parker Mar 20 at 10:32
Yup, that did the trick. Thanks! – M. Nilsson Mar 20 at 11:35

Your Answer

Get an OpenID
or

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