I'm trying to call a WCF service (hosted in a Windows Service, not IIS) and am getting the following error:
The maximum message size quota for incoming messages has been exceeded for the remote channel. See the server logs for more details.
I have tried increasing the MaxReceivedMessageSize and the ReaderQuotas to their maximum values without any luck.
I have also turned on logging and checked the messsage size that's getting "sent." It's definitely nowhere near the maximum. We're talking about sending an object that serialized into 372KB XML.
Two questions:
Does anyone know what "server logs" the message is referring to? I've checked the EventViewer but nothing shows up there...
Does anyone know what other configuration setting(s) might apply here?