I have WCF service and A method of service returns byte[] array to silverlight client. I get exception at some point at some time other wise it works fine. The remote server returned an error: NotFound. what might be the possible reason?
<binding name="plugWeb" closeTimeout="00:01:00" openTimeout="00:01:00"
receiveTimeout="00:10:00" sendTimeout="00:01:00" maxBufferSize="2147483647"
maxReceivedMessageSize="2147483647">
<readerQuotas maxDepth="128" maxStringContentLength="2147483647"
maxArrayLength="2147483647" maxBytesPerRead="4096" />
</binding>
I changed <readerQuotas maxDepth="64" >to <readerQuotas maxDepth="128"> now its working fine.
Is that ok ?
what is <readerQuota /> in config file?