Piyush Pansuriya8y agoPosted Mar 1, 2018, 2:14 AMAccepted answerHi, The limitation of Data Transfer using WCF Services can be set into web.config file. <bindings> <basicHttpBinding> <binding maxBufferSize="2147483647" maxBufferPoolSize="2147483647" maxReceivedMessageSize="2147483647"> <readerQuotas maxDepth="2147483647" maxStringContentLength="2147483647" maxArrayLength="2147483647" maxBytesPerRead="2147483647" maxNameTableCharCount="2147483647" /> binding> basicHttpBinding>bindings> The MaxValue is 2,147,483,647 (at least for a 32bit-system). This corresponds exactly to two gigabytes.
Piyush PansuriyaPosted Mar 1, 2018, 2:14 AM