c# - Maximum request length exceeded iis 7 -


i appreciate has been asked numerous times before, cannot seem working.

i have following values in config file:

  <httpruntime maxrequestlength="16384" executiontimeout="7200" /> 

and

<system.webserver> <security>   <requestfiltering>      <requestlimits maxallowedcontentlength="16777216" />   </requestfiltering> </security> </system.webserver> 

i getting maximum request length exception thrown.

the content length of message :content-length: 7785556

can suggest setting may have overlooked?

i had add:

 <httpruntime maxrequestlength="16384" executiontimeout="7200" /> 

to machine.config.


Comments

Popular posts from this blog

Change php variable from jquery value using ajax (same page) -

Pull out data related to my apps from Android Play Store and iOS App Store -

How can I fetch data from a web server in an android application? -