在客户端(客户端应用程序)的web.config中,我有:
<requestFiltering>
<requestLimits maxAllowedContentLength="52428800" maxQueryString="30000" maxUrl="40000" />
</requestFiltering>
在服务器端,我有:
<requestFiltering>
<requestLimits maxAllowedContentLength="52428800" />
</requestFiltering>
答案 0 :(得分:1)
maxAllowedContentLength
属性指定此Web应用程序的请求可以具有的最大字节数。
因此,如果在您调用客户端应用程序的内容中使用它,它仍然适用于对此客户端应用程序发出的请求。当在服务器应用程序中使用时,它适用于对此服务器应用程序的请求。因此,使用何种Web应用程序并不重要:所有Web应用程序都有HTTP请求,此属性控制特定应用程序的此请求主体的最大允许大小。