id	summary	reporter	owner	description	type	status	priority	milestone	component	version	resolution	keywords	cc	blocking	blockedby
6422	Could not return more than 60000 string data	soumitrasa		"Problem:
 
""We are using jquery to consume asp.net JSON web services. 
 
   $.ajax({
            type: ""POST"",
            url: ""Services/Services.asmx/_featchData"",
            data: ""{parameters}"",
            contentType: ""application/json; charset=utf-8"",
            dataType: ""json"",
            success: function(msg) {
            var value = msg.d;
               

            },
            error: function() {
                alert(""Error in loading!"");
            }
        });
Above portion written inside .js function, we are calling _featchData() method written inside Services.asmx page 
 
 
[WebService(Namespace = ""http://tempuri.org/"")]
    [WebServiceBinding(ConformsTo = WsiProfiles.BasicProfile1_1)]
    [System.Web.Script.Services.ScriptService]
    // To allow this Web Service to be called from script, using ASP.NET AJAX, uncomment the following line. 
    // [System.Web.Script.Services.ScriptService]
    public class Services : System.Web.Services.WebService
    {
        [WebMethod(EnableSession = true)]
        [ScriptMethod(ResponseFormat = ResponseFormat.Json]
        public string _featchData(parameters)
        {
             string data = """";
             //logic written to create string and fetch data from server.
              return data;                           
        }
      }
_featchData method written inside Services.asmx page,this method return data to .js file.
 
But problem is here through this process we could not return more than 60000 string data.
 
Please need some immediate solution because we are stuck here.
"	enhancement	closed		1.4.3	data	1.4.2	invalid	could not return heavy data			
