Hi
I have an app. returning approx 8000 entities to the client through a query. If I alter fx 1000 entities on the client and submit them using Manager.SaveChangesAsync everything is fine, but if I change more than 2500 entities and submit them, i get an:
" args.Error {IdeaBlade.EntityModel.EntityManagerSaveException: The remote server returned an error: NotFound. ---> System.ServiceModel.CommunicationException: The remote server returned an error: NotFound. ---> System.Net.WebException: The remote server returned an error: NotFound. ---> System.Net.WebException: The remote server returned an error: NotFound..."
My web.config looks like this:
< binding name="customBinaryBinding">
< binaryMessageEncoding>
< readerQuotas maxDepth="2147483647" maxStringContentLength="2147483647" maxArrayLength="2147483647" />
</ binaryMessageEncoding>
< httpTransport maxReceivedMessageSize="2147483647" maxBufferSize="2147483647" />
</ binding>I have tried creating a ServiceReferences.ClientConfig for my silverlight project using these values for binding:
< customBinding>
<!-- Custom binding using http, binary encoding, no security -->
< binding name="customBinaryBinding">
< binaryMessageEncoding />
< httpTransport maxReceivedMessageSize="2147483647" maxBufferSize="2147483647" />
</ binding>
</ customBinding>
But with no luck.
I suspect some setting is not correct, hope you can help me identify which
|