Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

6
votes
2answers
6k views

Modify endpoint ReaderQuotas programatically

I have a dynamic client to a service. How can i change the ReaderQuotas property of it's endpoint binding? I tried like this but it doesn't work .... DynamicProxyFactory factory = new ...
2
votes
2answers
555 views

Maximum Array Length Quota Exception in WCF

I am writing a WCF service to upload files but it throws an exceptions when byte array has more than 16384 elements. This is the exception detail: The formatter threw an exception while trying ...
2
votes
2answers
5k views

WCF service The maximum array length quota (16384) has been exceeded

I have a wsf service and a client application. While trying to communicate the client and the service I've gotten the following message: "The formatter threw an exception while trying to deserialize ...
1
vote
1answer
153 views

SharePoint 2010 WCF Service MaxItemsInObjectGraph problem

I have been encountering issues with a custom WCF service deployed to SharePoint 2010. I'm receiving the following error when trying to import some data into the client: 'Maximum number of items that ...
1
vote
1answer
1k views

Why WCF class Binding doesn't have member ReaderQuotas?

I'm wondering why the class Binding in WCF doesn't have a property ReaderQuotas, while its subclasses BasicHttpBinding and WSHttpBinding does. This fact makes coding a little hard. For me, I use ...
0
votes
1answer
100 views

Problems with readerQuotas in ASP.NET application

I have an ASP.NET 4.0 Application. A webservice is hosted using a .svc file linking a source (service implementation). The web service .svc file is located inside a directory WebServs in the ...
0
votes
3answers
163 views

The maximum string content length quota (8192)

Error in deserializing body of reply message for operation 'CreateTransactionEntity'. The maximum string content length quota (8192) has been exceeded while reading XML data. This quota may be ...
0
votes
1answer
684 views

How do I increase the reader quota on WCF service?

I don't expect anyone to be able to help out with this but let's give it a go. I have a WinForms app that uses a WCF service to pull down a rather large JSON document serialised into a string. I have ...
0
votes
2answers
342 views

WCF - Increase ReaderQuoatas on REST service

I have a WCF REST Service which accepts a JSON string One of the parameters is a large string of numbers This causes the following error - which is visible by tracing and using SVC Trace Viewer ...