So I'm trying to reach my dataset which is on a GoDaddy server:
Dim j1 As HttpJob
j1.Initialize("Job1", Me)
j1.Username = "cxxr"
j1.Password = "Redxx!"
j1.download("https://xxx.com/readtable.php")
But I get an error:
javax.net.ssl.SSLPeerUnverifiedException: No peer certificate
I've changed
hc.Initialize
to
hc.InitializeAcceptall
in service_create
Thanks
Dim j1 As HttpJob
j1.Initialize("Job1", Me)
j1.Username = "cxxr"
j1.Password = "Redxx!"
j1.download("https://xxx.com/readtable.php")
But I get an error:
javax.net.ssl.SSLPeerUnverifiedException: No peer certificate
I've changed
hc.Initialize
to
hc.InitializeAcceptall
in service_create
Thanks
Last edited: