Posted on: 4/9/2015 12:21:30 AM | Views : 560

Hi everyone,
I have a WCF project that I am building using LINQ to SQL Classes. My problem is I cannot retrieve more than 200 records. I and having this error

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.

I went to the web.config and change the size but it still giving me the same errors. Here is my webconfig setting
<bindings> <basicHttpBinding> <binding name="BasicHttpBinding_IService1" maxReceivedMessageSize="2147483647" closeTimeout="00:10:00" openTimeout="00:10:00" receiveTimeout="00:10:00" sendTimeout="00:10:00" > <readerQuotas maxBytesPerRead="2147483647" maxArrayLeng ...

Go to the complete details ...