.net - data transfering problem WCF -


why cant send array more 3000 elements size ~5 mb table size 2500 elements there no problem ?

<binding name="testbinding" maxbuffersize="100485760" maxreceivedmessagesize="100485760" maxbufferpoolsize="100485760" closetimeout="00:10:00" opentimeout="00:10:00" receivetimeout="00:10:00" sendtimeout="00:10:00">           <readerquotas maxdepth="1000" maxstringcontentlength="100485760" maxarraylength="100485760" maxbytesperread="100485760" maxnametablecharcount="100485760" />         </binding> 

changing of of parameters doesnt give results

i think hosting service in iis. in such case must set asp.net request limit default 4096kb.

<system.web>   <httpruntime maxrequestlength="4096" /> </system.web> 

Comments

Popular posts from this blog

linux - Mailx and Gmail nss config dir -

c# - Is it possible to remove an existing registration from Autofac container builder? -

php - Mysql PK and FK char(36) vs int(10) -