Linked Questions
14 questions linked to/from Maximum array length quota
2 votes
2 answers
19k views
How to Increase the MaxArrayLength in a WCF web.config - for uploading large files
I have dig all around the net for two days about it, and I can't make my asp.net web site to upload files bigger then 16Kb I'm using fileUploader,wcf, and I have service reference in the client. when ...
1 vote
1 answer
2k views
How to upload files larger than 16k to a WCF-service?
To make a long story short: Making a web application Each user profile contains exactly one profile image, which is stored in the database The bottom layer uses ADO.NET entity framework for data ...
4 votes
2 answers
1k views
.net Serializer Deserialization failing when string is greater than 32768 characters long
I have a method like this: var stringReader = new StringReader(ruleSetXmlDefinition); var reader = XmlReader.Create(stringReader); var serializer = new WorkflowMarkupSerializer(); return serializer....
1 vote
1 answer
2k views
How to send large Messages to the WCF Services?
I have one DataContract in the WCF service.In that it has one Array and i am setting that array in the Client code. If I set the array to more than 1000 thousand its throwing up an error saying ...
0 votes
1 answer
2k 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
1 answer
1k views
Issue with size of byte[] being sent to web service?
I am trying to send a byte[] from a client to a web service. The array is composed of a serialized XML file. My test scenario works (with a very small byte[]). Here is the code: FormsService....
0 votes
1 answer
1k views
Saving image to database as varbinary, arraylength (part 2)
This is a followup to my previous question, which got solved (thank you for that) but now I am stuck at another error. I'm trying to save an image in my database (called 'Afbeelding'), for that I ...
0 votes
1 answer
866 views
Connecting to WCF running as a Windows Service on another computer
I have a WinForms client application. I have the WCF server running on another computer as a part of a Windows Service that I wrote. I first tried NetPipeBinding and now NetTcpBinding. I did open up 2 ...
0 votes
2 answers
1k views
Send a large array with a webservice
i've looked to a lot of solutions to resolve my problem but i didn't found anything good for me. my problem is simple: i can't send a long array of bytes through the webservice. I can send an array ...
1 vote
1 answer
786 views
Configure AJAX enabled WCF Service in WebApp to receive large data
Using Visual Studio 2010 and .NET framework 4.0 I have built a simple HelloWorld WCF service that is AJAX enabled based on the sample here: http://msdn.microsoft.com/en-us/library/bb924552.asp ...
1 vote
1 answer
489 views
Anyone seen this problem with protobuf-net over net.msmq
I am seeing a problem where I send large messages over wcf net.msmq using protobuf-net and get the following error: The formatter threw an exception while trying to deserialize the message: Error in ...
0 votes
1 answer
410 views
WCF pass maximum byte array
I am trying to pass large byte array to wcf service from windows phone application. I have tried all possible way's to pass large byte array but I couldn't pass it. Here is my web.config <system....
0 votes
2 answers
218 views
Serialize array slice for WCF service
I am sending and receiving large arrays of objects to and from a WCF service. I am splitting the array into chunks and sending those, so that each call is not too large. The code looks something like ...
0 votes
1 answer
59 views
max Array Quota reached wcf service (16384)
I have created a simple empty asp.net website and added wcf service to insert image to a database. and i am getting the error of max array quota. i changed my client config file and up the limit of ...