bigrock サーバー (ドメインがある) にデプロイすると正常に動作する Web サービス (ASP.NET) への ajax 呼び出しを含む index.html があります。
$.ajax({
type: "POST",
url: "myurl/mywebservice.asmx",
contentType: "application/json; charset=utf-8",
dataType: "json",
success: function (msg) {
alert("success");
},
error: function (msg,status) {
$('#demo').html("status is "+status+" . Msg is "+msg.d.responseText);
//attribute for responsetext might be wrong here but in my application it is correct as i am using different system ryt now.
}
});
しかし、phonegap のオンライン ジッパーを使用して、html、css、js、web.config、few クラスから Android アプリの apk を作成し、それをデバイスにインストールすると、何も表示されません。responseTextのないajaxエラーが表示されます。
私は何が欠けていますか?