Re: Data Socket: SSL protocol error (General questions)
Is the above mentioned problem solved, if so how?
I'm getting a similar error when I try to connect to an FTPS server on port 990 (FTPSimplicit).
The error I get is :
Run-time error '60000':
SSL Protocol Eror
I have no firewall on my system or on the router.
[code]
Private Sub Connect()
With m_FtpDLX
If .State <> Connected Then
.HostName = my.test.host
.Port = 990
.Protocol = ProtocolsEnum.FTPSimplicit
.Encryption = EncryptionsEnum.encAny
.Blocking = True
.Login = username
.Password = password
.Passive = True
.Connect
End If
End With
End Sub
[/code]
Any help is appreciated.