I have the following bit of code which I'm just trying out by running in firebug
$.ajax({
type:"POST",
url:"http://mpdomain/WebService.asmx/Operation",
data: "{'parameter1': '44906'}",
contentType: "application/json;charset=utf-8",
dataType: "json",
success: function(data) { alert("succsess") },
error: function(e, ts, et) { alert(ts) }
})
In theory it should work. However the error handler is triggered, and ts is simply set to "error". How do I get more detail about what's gone wrong?