Okay, I'm writing my first WCF server application, and it's working except for this. When the service tries to return more than a hundred or so rows, I get the following 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.
What is this telling me, and how do I fix it?
At the moment, I'm still running this service temporarily locally auto-hosted within VS2012 (WcfSvcHost). I'll worry about hosting it with IIS later... once I get it working.
I get this error using both my custom client AND the Wcf Test Client... it works when returning 89 rows, but fails with that error message when returning 102 rows.
Any thoughts on how to correct 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.
What is this telling me, and how do I fix it?
At the moment, I'm still running this service temporarily locally auto-hosted within VS2012 (WcfSvcHost). I'll worry about hosting it with IIS later... once I get it working.
I get this error using both my custom client AND the Wcf Test Client... it works when returning 89 rows, but fails with that error message when returning 102 rows.
Any thoughts on how to correct this error?