Hi,
I need to communicate with the server using HTTPS protocol.
My requests work well over HTTP while when I switch to HTTPS entirely, I am getting status 0 failures for both GET and POST requests.
Wireshark on Server side, Port 443 shows client Hello messages and server response with certificate and nothing else (no attempts of further communication)
The certificate is installed on the device, so no issues there.
The code is very simple -
Code:
Ext.Ajax.request({
url : serviceUrl,
timeout : 15000,
jsonData : payload,
method : 'POST',
headers : {
'Content-Type' : 'application/json'
Authorization : authString
},
success : successCallback
failure : failureCallback
});
Above works OK over HTTP.
Looks similar to http://www.sencha.com/forum/showthread.php?248437
'Resource failed to load' at line 314, Conection.js