vote up 0 vote down star

Can i give unlimited length for maxJsonLength?

I am using the autocomplete feature of jquery. When i try to retrieve the list of more then 17000 records(each wont have more than 10 char length), its exceeding the length and throws the error:

Exception information:
Exception type: InvalidOperationException
Exception message: Error during serialization or deserialization using the JSON JavaScriptSerializer. The length of the string exceeds the value set on the maxJsonLength property.

flag

You should really think of a way to filter out some of those records though. – çağdaş Jul 20 at 10:59

4 Answers

vote up 1 vote down check

The MaxJsonLength property cannot be unlimited, is an integer property that has by default 2097152 characters (approx. 4MB of data).

You can set the MaxJsonLength property on your web.config:

<System.Web.Extensions>
    <Scripting>
      <WebServices>
        <JsonSerialization MaxJsonLength="500000">
        </JsonSerialization>
      </WebServices>
    </Scripting>
</System.Web.Extensions>
link|flag
They could have used zero to mean unlimited :-) – djna Jul 20 at 6:52
vote up 0 vote down

It appears that there is no "unlimited" value. The default is 2097152 characters, which is equivalent to 4 MB of Unicode string data.

As as already been observed, 17,000 records are hard to use well in the browser. If you are presenting an aggregate view it may be much more efficient to do the aggregation on the server and transfer only a summary in the browser. For example, consider a file system brower, we only see the top of the tree, then emit further requestes as we drill down. The number of records returned in each request is comparatively small. A tree view presentation can work well for large result sets.

link|flag
vote up 0 vote down

The question really is whether you really need to return 17k records? How are you planning to handle all the data in the browser? The users are not going to scroll through 17000 rows anyway.

A better approach is to retrieve only a "top few" records and load more as needed.

link|flag
The default list from json will give 17k records. But the autocomplete feature will list only the records that matches the characters that the user types, thus it wont need to scroll the list more. SO what i need is to set unlimited length for maxJsonLength which can serialize the 17k data. – Prasad Jul 20 at 6:53
You could use a combination of server and client side filtering. It could be hard to filter all the data on the client side, not to mention the network latency. – Chetan Sastry Jul 20 at 7:17
vote up 0 vote down

You can configure the max length for json requests in your web.config file:

<system.web.extensions>
	<scripting>
		<webServices>
			<jsonSerialization maxJsonLength="....">
			</jsonSerialization>
		</webServices>
	</scripting>
</system.web.extensions>

The default value for maxJsonLength is 102400. For more details, see this MSDN page: http://msdn.microsoft.com/en-us/library/bb763183.aspx

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.