System.Web.Services.Protocols.SoapException: There was an exception running the extensions specified in the config file. —>
System.Web.HttpException: Maximum request length exceeded.
at System.Web.HttpRequest.GetEntireRawContent()
at System.Web.HttpRequest.get_InputStream()
at System.Web.Services.Protocols.SoapServerProtocol.I nitialize()
— End of inner exception stack trace —
>>>>>>>>>>>>>>>>>>>>
You can set it in the web.config file with:
<httpRuntime maxRequestLength="9000"></httpRuntime>
The above will set it to 9 mb
>>>>>>>>>>>>>>>>>>>>>
如果是上传文件,该数字的大小要大于最大可上传文件的大小,因为你的SOAP请求中,还包含一些其它标签信息。