[lnkForumImage]
TotalShareware - Download Free Software

Confronta i prezzi di migliaia di prodotti.
Asp Forum
 Home | Login | Register | Search 


 

Forums >

microsoft.public.dotnet.framework.aspnet.webservices

Getting HttpException while transfering Dataset

Carlos

6/2/2004 9:31:00 PM

I am transfering a large dataset, about 120,000 records to a web service to
update a DB but I get this error:

System.Web.HttpException: Maximum request length exceeded.

How can this be fixed? Is it something I have to config on the remote
server?

Thanks


1 Answer

Carlos

6/3/2004 5:28:00 PM

0

Thanks, This works.

Does this affect or compromise in any war my server's security or
performance?

Thanks Again.


"Albert Pascual" <anonymous@discussions.microsoft.com> wrote in message
news:974270FD-83E1-4DB2-9CCA-81E34E9AE9E0@microsoft.com...
> On your Web.config add this
>
> <httpRuntime maxRequestLength="10192" />
>
> This is for 10 MB, you can make it as big as you want, please let me know
if that fixes your problem.
>
> Al