I am calling a web service from javascript and it returns an array of objects. Everything works fine until the array returns a larger number of objects (601), and then I get the error shown below. Ideas
_exceptionType: System.InvalidOperationException
_message: Maximum length exceeded.
_stackTrace: at System.Web.Script.Services.RestHandler.InvokeMethod(HttpContext context, WebServiceMethodData methodData, IDictionary`2 rawParams)
at System.Web.Script.Services.RestHandler.ExecuteWebServiceCall(HttpContext context, WebServiceMethodData methodData)

web service via javascript error
_Michael_
Is this an AJAX question (I see System.Web.Script seems to an AJAX namespace) There's a couple of possible solutions at the AJAX forums (http://forums.asp.net/default.aspx GroupID=34):
http://forums.asp.net/thread/1548990.aspx
http://forums.asp.net/thread/1456615.aspx
Hope this helps.