User-1803226828 posted
$.ajax({
type: 'GET',
url: wsUrl,
contentType: "text/plain, charset=utf-8",
dataType: "json",
success: function (data) {
alert(data.Value);
},
error: function (XMLHttpRequest, textStatus, errorThrown) {
alert(textStatus + "," + errorThrown.toString());
}
});