SOS! actualmente nos conectamos a un servidor mediante SFTP por chilkat, enviando 4 parámetros que son el dominio, puerto, usuario y clave.
Sucede que ahora que cambiaron el proveedor la clave lo envían con un archivo KEY y no se como leerlo. El software esta en BV6.0
código actual que si funciona:
========================================
Public Function Subre_GUIA(nombreArchivo As String) As Integer
Dim sftp As New ChilkatSFtp
Dim success As Long
success = sftp.UnlockComponent("TALMAS.SS1122018_6FYzL2ydm7mF")
If (success <> 1) Then
Subre_GUIA = 1
Exit Function
End If
sftp.ConnectTimeoutMs = 5000
sftp.IdleTimeoutMs = 10000
success = sftp.Connect(gIPFTP_Guia, gPuertoFTP_Guia)
If (success <> 1) Then
Subre_GUIA = 1
Exit Function
End If
success = sftp.AuthenticatePw(gUsuarioFTP_Guia, gPasswordFTP_Guia)
If (success <> 1) Then
Subre_GUIA = 1
Exit Function
End If
success = sftp.InitializeSftp()
If (success <> 1) Then
Subre_GUIA = 1
Exit Function
End If
success = sftp.UploadFileByName("IN/" & nombreArchivo & ".txt", App.Path + "\IN\" & nombreArchivo & ".txt")
If (success <> 1) Then
Subre_GUIA = 1
Exit Function
End If
sftp.Disconnect
If (success <> 1) Then
Subre_GUIA = 1
Exit Function
End If
Subre_GUIA = 0
End Function
========================
pero no se como setear el password desde el archivo