The only message it pushes back to me is:
{"The size necessary to buffer the XML content exceeded the buffer quota."}
System.ServiceModel.QuotaExceededException
Do I need more room in my transport? Like increase either the maxBufferPoolSize or maxReceiveMessageSize ?
<httpTransport manualAddressing="false" maxBufferPoolSize="500000"
maxReceivedMessageSize="500000" allowCookies="false"
authenticationScheme="Anonymous" bypassProxyOnLocal="false"
hostNameComparisonMode="StrongWildcard" keepAliveEnabled="true"
maxBufferSize="500000" proxyAuthenticationScheme="Anonymous"
realm="" transferMode="Buffered" unsafeConnectionNtlmAuthentication="false"
useDefaultWebProxy="true" />
TIA.