User260886948 posted
Hi,
First we had to set a maxRequestLength to a larger value in our httpRuntime element to run the request for longer period.
<system.web>
<httpRuntime maxRequestLength="102400" />
</system.web>
Then we should define our binding as the following:
<basicHttpBinding>
<binding name="largeBinding"
maxBufferSize="2147483647" maxReceivedMessageSize="2147483647">
<readerQuotas
maxArrayLength="2147483647" maxBytesPerRead="2147483647"
maxNameTableCharCount="2147483647" maxStringContentLength="2147483647" />
</binding>
</basicHttpBinding>
Best Regards,
Amy Peng