Hello
My app is giving an error of status code 0 while connecting to a https altough i used initializeacceptall as always.
The exact error says :
An SSL error has occurred and a secure connection to the server cannot be made.
Exact same procedure works in another apps that confuses me . I use below simple sub
edit: same thing happens when i try another way of getting data with :
My app is giving an error of status code 0 while connecting to a https altough i used initializeacceptall as always.
The exact error says :
An SSL error has occurred and a secure connection to the server cannot be made.
Exact same procedure works in another apps that confuses me . I use below simple sub
B4X:
Sub ExecuteRemoteQuery(Query As String, JobName As String)
Dim job As HttpJob
job.Initialize(JobName, Me)
job.PostString("https://...", Query)
End Sub
edit: same thing happens when i try another way of getting data with :
B4X:
Dim connection As HttpJob
connection.Initialize("grafik",Me)
connection.download2("https://...", Array As String ("action", "yeniapp"))
Last edited: