phonegapを使用してiPhone用のアプリケーションを開発しています。HTTP を使用して ajax リクエストを送信すると、すべて正常に動作します。しかし、HTTPS に切り替えると、要求がサーバーに送信されません。同じコードが、Android の HTTP と HTTPS で機能します。
以下は私が使用しているコードです。事前にご協力いただきありがとうございます
var xmlRequest = $.ajax({
url : "https://test.com",
type : 'POST',
contentType : "text; charset=utf-8",
data : sr,
dataType : "text",
headers : { SOAPAction : '"'+soapaction+ '"' },
success : function( data, textStatus, jqXHR ) {
console.log("----- xmlRequest.responseText: " + xmlRequest.responseText);
SOAPClient._onSendSoapRequest(method, async, callback, sch, data);
},
error : function( jqXHR, textStatus, errorThrown ) {
console.log("----- xmlRequest.responseText: " + xmlRequest.responseText);
console.log("----- errorThrown = " + errorThrown + " textStatus = "+ textStatus );
ServiceErrorMessage(method, jqXHR.status, errorThrown, xmlRequest.responseText);
},
cache: false
});