Hi everyone,
at first I'm sorry for my english.
So, I get this problem when I was changing some requestes from httpclient to httpjob.
This is my code:
Sub MySub
Dim Payload As String = "[...]"
Dim j As HttpJob
j.Initialize("",Me)
j.GetRequest.Timeout = 5000
j.PostString("https://...",Payload)
Wait For (j) JobDone(j As HttpJob)
at first I'm sorry for my english.
So, I get this problem when I was changing some requestes from httpclient to httpjob.
This is my code:
Sub MySub
Dim Payload As String = "[...]"
Dim j As HttpJob
j.Initialize("",Me)
j.GetRequest.Timeout = 5000
j.PostString("https://...",Payload)
Wait For (j) JobDone(j As HttpJob)
If j.Success Then
Dim JSON As String
Dim JSONP As JSONParser
Dim JSON As String
Dim JSONP As JSONParser
JSON = j.GetString
Dim myMap As Map
Dim myMap As Map
JSONP.Initialize(JSON)
myMap = JSONP.NextObject
When I make my request I get this response error:
javax.net.ssl.SSLHandshakeException:
Java.security.cert.CertPathValidatorException: Trust anchor for certification path not found.
Once I used HttpClint.InitializeAcceptAll to agree the comunication.
How I can do it with a HttpJob object please?
I serched in the forum but I can't find anything
myMap = JSONP.NextObject
[...]
End IfWhen I make my request I get this response error:
javax.net.ssl.SSLHandshakeException:
Java.security.cert.CertPathValidatorException: Trust anchor for certification path not found.
Once I used HttpClint.InitializeAcceptAll to agree the comunication.
How I can do it with a HttpJob object please?
I serched in the forum but I can't find anything