The maximum message size quota for incoming messages (65536) has been exceeded. To increase the quota, use the MaxReceivedMessageSize property on the appropriate binding element
On WCF, there is a limit for message transaction. When this limit exceeds while receiving or sending the data across WCF Service, we can expect this error. For Resolving this Issue we have to modify the Binding Configurations. Mainly we have to increase the Buffer size of the Incoming Messages. If client application is receiving huge amount of data, then modification should be done on client side. If WCF service is receiving huge amount of data, then modification should be done on WCF side. Here we have explained based on WCF Test client.
On the Config File of the client application or on the WCF config file, please write the following code for resolving this issue. If UI is receiving data from WCF service, then web.config file of UI should be modified. By appending this code inside binding configuration section of Config file, the capacity of the message that can be exchanged across the WCF service wil be increased. But, it is strictly advised to split the service call so that WCF service cannot be truncated.