Maximum request size exceeded Httpexception (0x80004005)

Asked

Viewed 468 times

1

I am trying to upload files on my system however I cannot due to error message:

Httpexception (0x80004005): Maximum request size exceeded.

I’ve tried several solutions and nothing

Following the code I changed to try to solve the problem:

 <system.web>
    <httpRuntime maxRequestLength="102400"/>
  </system.web>
 <system.webServer>
    <security>
      <requestFiltering>
        <requestLimits maxAllowedContentLength="2147483648" />
      </requestFiltering>
    </security>
  </system.webServer>

My application is C# and uses MVC in its presentation layer.

How can I solve?

  • Gentlemen, I solved the problem. The first snippet of code (system.web) was repeated 3 times and I was making the change only in one of the snippets.

No answers

Browser other questions tagged

You are not signed in. Login or sign up in order to post.