The maximum message size quota for incoming messages (65536) has been exceeded HD
Please visit http://www.technomark.in/The-maximum-message-size-quota-for-incoming-messages-%2865536%29-has-been-exceeded.aspx for more information In this video, we have explained about following Error. The maximum message size quota for incoming messages (65536) has been exceeded Complete steps is described in this video regarding How To Solve The maximum message size quota for incoming messages (65536) has been exceeded If you got any clarification on this, please write it on Comment section. We will definitely update you back. On WCF, there is a limit for message transaction. When this limit exceeds while receiving or sending the data across WCF Service, the above error is obtained. If client application is receiving huge amount of data, then following modification should be done on client side. If WCF service is receiving huge amount of data, then following modification should be done on WCF side. Here we have explained based on WCF Test client. How To Resolve This Issue? 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. Inside Binding Config Section, the following should be increased. maxBufferSize = "2147483647" maxBufferPoolSize = "2147483647" maxReceivedMessageSize = "2147483647"
Похожие видео
Показать еще