Hi.
I´m wornking in a Web Service that has to exchenge a great amount of data,
but I keep receiving a SOAPException that says:
"There was an exception running the extensions specified in the config file.
--> Maximum request length exceeded."
How can I increase this Request Length?
Thanks in advance.
Marcos,
Hope this helps:
This error relates to ASP.NET's maxRequestLength setting. By default,
ASP.NET limits requests to 4096 bytes (or 4 MB), as explained in this
Microsoft KB article:
http://support.microsoft.com/default.aspx?scid=kb;EN-US;295626. This error
will occur if an upload is larger than 4 MB and you have not adjusted the
maxRequestLength setting for your application in web.config or
machine.config.
<httpRuntime
executionTimeout="1200"
maxRequestLength="102400"
useFullyQualifiedRedirectUrl="false"
minFreeThreads="8"
minLocalRequestFreeThreads="4"
appRequestQueueLimit="100" />
> Hi.
>
[quoted text clipped - 7 lines]
>
> Thanks in advance.
Marcos - 29 Mar 2005 20:49 GMT
Thanks Naes, it worked just fine!
> Marcos,
>
[quoted text clipped - 14 lines]
> minLocalRequestFreeThreads="4"
> appRequestQueueLimit="100" />