JSONP, , , ASMX, - -. , , .
Top2009WS ASP.NET, - - GetLines(), :
[WebMethod]
public Line[] GetLines(int ID) {
var client = new Topp2009WS.Topp2009WSSoapClient();
client.open();
return client.GetLines(ID);
}
-, :
$.ajax({
url: 'Service.asmx/GetLines',
type: 'POST',
dataType: 'json',
contentType: 'application/json',
data: '{"ID":' + 12345 + '}',
success: function(response) {
alert(response.d[0].LineName);
}
});
. jQuery -.