$.ajax(
{
url: "http://**********:******/sdpapi/request?TECHNICIAN_KEY=******************",
method: "POST",
data: data,
dataType: 'jsonp',
// jsonpCallback: 'SCPRESPONSE',
success: function(reply)
{
console.log(reply);
},
error: function(xhr,reply,error)
{
console.log(xhr);
console.log(reply);
console.log(error);
}
}
)