Click here to Skip to main content
15,892,072 members
Please Sign up or sign in to vote.
4.00/5 (1 vote)
See more:
I am using following link to make jsonp call https://raw.github.com/betamax/getImageData/master/jquery.getimagedata.js[^]

My jsonp call
JavaScript
$.jsonp({
                   //async: true,
                   //crossDomain: true,
                   type: 'GET',
                   timeout: 10000,
                   url: 'http://sys108/vbr/Handler.ashx?imgURL=' + encodeURIComponent(imageURL) + '&type=crossDomainImage',
                   dataType: 'jsonp',
                   contentType: "application/json; charset=utf-8",
                   success: function (data) {
                       console.log(data.ImageData);

                   },
                   error: function (data) {
                       console.log('error');
                   }
               });

My response method
C#
string imgData= processCrossDomainImage("");
context.Response.ContentType = "text/javascript";
string strJson = "{  \"ImageData\" : \"" + imgData + "\" }";
            //if (context.Request.QueryString["callback"] != null)
            //{
            //    strJson = context.Request.QueryString["callback"] + "(" + strJson + ")";
            //}

            context.Response.Write(strJson);


Above code gives me error "Uncaught syntax error Unexpected token :
My response looks like
JavaScript
{  "ImageData" : "/9j/4AAQSkZJRgABAQEAYABgAAD/2wBDAAICAgICAQICAgIDAgIDAwYEAwMDAwcFBQQGCAcJCAgHCAgJCg0LCQoMCggICw8SPzI5+pJ/DAr8zxPHfFuPrKdXH1XZp6TaV+mkWl+HkfT08nwGGhpRjrpblW3XW1/L/hj8z/AA/qi634L03VAArXMCs6jorY5Faxb1s2k9F5JdvmdGEwFDLqXsqXXVt7vt919A5AA6Y7UUi/6tfpS1+yHcFFFFAH/2Q==" }


Not sure but i am doing something wrong with response settings.Please help.
Posted
Comments
Prasad Khandekar 22-Apr-13 15:44pm    
You do not seems to have "?callback=?" In your URL.

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