I m developing app using android-phonegap.
its working fine when i call webservice hosted on my pc.
But when i deploy it on ssl server, i a not getting any output.
my code is :
function CallService() {
$.ajax({
type: "GET",
url: "http://devpc4:5566/Service1.asmx/GetItems",
dataType: "json",
data: "{}",
contentType: "application/json; charset=utf-8",
success: OnSuccess,
error: OnError
});
}
can any one help me?
Check logs. Both on device and your server