【发布时间】:2014-10-10 11:46:27
【问题描述】:
虽然使用 c# 下载大 zip 文件大小为 10GB。我收到类似的错误 '页面未显示,因为请求实体太大。' 我已经在 iis 和
中获得了 app 命令 appcmd.exe set config -section:system.webserver/serverruntime /uploadreadaheadsize: 1048576 /commit:apphost
我已经更改了配置文件
<system.serviceModel>
<bindings>
<basicHttpBinding>
<binding maxReceivedMessageSize="10485760">
<readerQuotas ... />
</binding>
</basicHttpBinding>
</bindings>
</system.serviceModel>
【问题讨论】: