Click here to Skip to main content
15,886,788 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
I am trying to pass large data(image data up to 90,000 characters) from one domain to other for which i am using jsonp, as there's limitation to size of data passed using jsonp i am sending the data in packets. Is there any way to compress the data being passed so the number of packets will get reduced

JavaScript
var s="ACKCrI/AggggAACCCCAAAIIIIAAAjUQIABQg0oiiwgggAACCCCAAAIIIIAAAggUFSAAUFSQ/RFAAAEEEEAAAQQQQAABBBCogQABgB4IIIAAknnVP9d3yAXnReeNz8x29dtDYC0MnXC3jdFIMa4lW06PgIgaxh0nmHZsQGAmA54O99+5+38S347EQAITccoe7FIAMDtjNnHi+3Uhb7H7kvH9/mymI5tTFnzdGpDIxPaZRAT2ElrxDFOsq+vXtzRJL7OeOxnIu38FfkMoGsRChDChgA7uxNagIECBAgQIAAAQIECBAgcCRgADji8pgAAQIECBAgQIAAAQIECNwp8AOSEl92WlsVrQAAAABJRU5ErkJggg==";
     $.ajax({
         type: "GET",
         url: "http://sys108/restnew1/RestServiceImpl.svc/GetData",
         data: {
             imagedata: s
               },
         dataType: "jsonp",
         contentType: "application/json; charset=utf-8",
         success: function (data) {

               },
         error: function (jqXHR, textStatus, errorThrown) {
             if (window.console) console.log("Error... " + textStatus + "        " + errorThrown);

         }
     });
Posted

1 solution

Yes, there are some limitations. please read my blog for more details

(413) Request Entity Too Large[^]
http://tharakaweb.com/2012/12/11/413-request-entity-too-large/[^]

In addition, when you are serializing JSON also have some limitations. you can avoid this by modifying your web.config file as follows

HTML
<configuration>
<system.web.extensions>
<scripting>
<webservices>
<jsonserialization maxjsonlength="102400" />
</webservices>
</scripting>
</system.web.extensions>
</configuration>
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900