I have the ajax call to webservice jsonwebservice.asmx ,my datatype is xml, i have problem with passing data to webservice is thier any syntax problem
$.ajax({ type: "POST", async: false, url: "/blkseek2/JsonWebService.asmx/GetList", datatype:"xml", data: "keyword1="+keyword1+ "streetname="+address1+ "lat="+lat+ "lng="+lng+ "radius="+radius ,
failure: function(XMLHttpRequest, textStatus, errorThrown)
{ ajaxError(XMLHttpRequest,textStatus, errorThrown); },
success: function(xml)
{ ajaxFinish(xml); }
});
});
});