I try to calling a webservices with JQuery. How can i make code bellow Working ?
function TEST() { var curcode = "AFA"; var serviceURL = "http://www.webservicex.net/country.asmx/GetCountryByCurrencyCode"; var requestData = "{'CurrencyCode':'" + curcode + "'}"; $.ajax({ type: "POST", contentType: "application/json; charset=utf-8", url: serviceURL, data: requestData, dataType: 'json', success: function(msg) { var response = msg.d; alert("response.Message : " + response.Message); }, error: function(msg) { alert("error msg : " + msg.d); } }); } </script>
What did i miss ?
Regards, Andrian
