IIS 7.5 – uploadReadAheadSize
HTTPS 413
The fix for us is listed below:
How to set the uploadReadAheadSize in IIS 7.5
- Launch “Internet Information Services (IIS) Manager”
- Expand the Server field
- Expand Sites
- Select the site you want to make the modification for.
- In the Features section, double click “Configuration Editor”
- Under “Section” select: system.webServer>serverRuntime
- Modify the “uploadReadAheadSize” section
- Click Apply
1. uploadReadAheadSize
In the second scenario, the error occurred because of the size of the page, it is very large and it caused to request entry body become larger when you submitting the page.http://www.microsoft.com/technet/prodtechnol/WindowsServer2003/Library/IIS/7e0d74d3-ca01-4d36-8ac7-6b2ca03fd383.mspx?mfr=true
Basically, what happens is if you have a website with SSL and “Accept Client Certificates” enabled HTTP requests are limited to the UploadReadAheadSize of the site. To resolve this, you have to increase the UploadReadAheadSize
. (Default size 48kb)
appcmd.exe set config -section:system.webserver/serverruntime /uploadreadaheadsize: 1048576 /commit:apphost
2. maxReceivedMessageSize
WCF by default limits messages to 64KB to avoid DOS attack with large message. By default, it sends byte[] as base64 encoded string and it increases the size of the message (33% increase in size). There for if the uploaded file size is ~larger than 48KB then it raises the above error. (48KB * 1.33 = ~64KB) (NB. you can use MTOM – Message Transmission Optimization Mechanize to optimize the message)
By modifying the “maxReceivedMessageSize
” in the Web.config file to accept large messages, you can solve this issue.
<system.serviceModel>
<bindings>
<basicHttpBinding>
<binding maxReceivedMessageSize="10485760">
<readerQuotas ... />
</binding>
</basicHttpBinding>
</bindings>
</system.serviceModel>
Recent Comments