We purchased a chilkat license in 2011 to embed a chilkatftp2 object in a VB6 program that would launch automatically each night at client sites and connect via ftp(s) to billing clearinghouses to upload claims and download reports. It worked fine all this time until a couple weeks ago when one of the clearinghouses changed upgraded their own ftp client. Now the vb6 app will not connect, and the error code the chilkatftp2 dll generates is 201, which according to documentation on the chilkat site has to do with ssl authorization.
I tried using a filezilla inteface to connect to that site, and it did so. The problem seems to be the chilkatftp2 ssl capability in our purchased version (2.6.11) is now out of date. We would like to keeo using our script, and the embedded chilkat reference, and would be happy to purchase what is needed.
My question is: is there a newer version of chilkatftp2 we can use/purchase, or a substitute? Our current vb6 code follows (again, it worked for years). Thanks - Matt
Private oFtp As New ChilkatFtp2
oFtp.HostName = ftps.xxxxx.com
oFtp.Username = UserNameyy
oFtp.Password = Pwordzz
oFtp.Passive = 1
oFtp.AuthTls = 1
success = oFtp.Connect
If success = 0 Then error = oFtp.ConnectFailReason 'error now is 201