1

There are 1 best solutions below

1
Jiayao On

You need to set maxReceivedMessageSize both in your server-side and client-side. The code like this:

<system.serviceModel>
    <bindings>
        <basicHttpBinding>
            <binding maxBufferSize="64000000" maxReceivedMessageSize="2147483647" />
        </basicHttpBinding>
    </bindings>
</system.serviceModel>