Thanks
I’ll offer this bit of code from my solution:
function GetMissionList(pageNumber) {
//Calling WCF Service using jQuery ajax method
$.ajax({
type: “GET”,
async: “false”,
url: “http://localhost:7100/CommandCenter.svc/GetMissions(” + pageNumber.toString() + “, 20, 0)”,
contentType: “application/json; charset=utf-8”,
dataType: “json”,
processData: true,
success: function (missions) {
NewMissionList(missions);
},
error: function (xhr) {
//alert(xhr.responseText);
alert(“Service Call Failed”);
}
});
}
function NewMissionList(missionPage) {
//
// Do your thing with the missionPage class
//
}