Hi
In my B4J program I send a pair of mails via a PHP script to a WEB site, the first pair is sent correctly, the second causes the first mail to crash.
The error is as follows:
Thanks for any suggestions
In my B4J program I send a pair of mails via a PHP script to a WEB site, the first pair is sent correctly, the second causes the first mail to crash.
The error is as follows:
The script snippet that causes the error is:ResponseError. Reason: javax.net.ssl.SSLPeerUnverifiedException: Hostname www.condorinformatique.com not verified (no certificates), Response:
B4X:
Dim job As HttpJob
job.Initialize("Job", Me)
job.PostMultipart("https://" & webMailer,dataForControl,Null) ' tells supervisor
Wait For (job) JobDone(job As HttpJob)
If Not(job.Success) Then
fx.Msgbox(MainForm,job.GetString,title)
End If
job.Release