Connecting to Microsoft Azure blob (wodFtpDLX / wodFtpDLX.NET)
Thanks Jasmine. Some test VB code below. As shown using key file, it fails at the connect. It works if modified to authenticate with a password.
[code]
Try
Using ftps As New WeOnlyDo.Client.FtpDLX
ftps.Hostname = hostname
ftps.ListParams = ""
ftps.LicenseKey = licenceKey
ftps.TransferMode = TransferModes.Binary
ftps.Blocking = True
ftps.Passive = False
ftps.Protocol = Protocols.SFTP
ftps.Authentication = Authentications.Certificate
ftps.PrivateKey = IO.File.ReadAllText(privateKeyFile)
ftps.Login = login
ftps.Connect()
ftps.ListDir("\")
For Each ftpDirItem As DirItem In ftps.DirItems
Console.WriteLine(ftpDirItem.FullLine)
Next
ftps.Disconnect()
End Using
Catch ex As Exception
Console.WriteLine(ex.ToString)
End Try
[code]
Hi.
I don't think so. Is it something we could duplicate by ourselves? Can you share your code as separate sample?
Jasmine
Complete thread:
- Connecting to Microsoft Azure blob - dfb, 2022-08-03, 08:08
- Connecting to Microsoft Azure blob - wodSupport, 2022-08-03, 09:14
- Connecting to Microsoft Azure blob - dfb, 2022-08-04, 03:07
- Connecting to Microsoft Azure blob - wodSupport, 2022-08-04, 09:24
- Connecting to Microsoft Azure blob - dfb, 2022-08-09, 09:28
- Connecting to Microsoft Azure blob - wodSupport, 2022-08-09, 09:45
- Connecting to Microsoft Azure blob - dfb, 2022-08-10, 07:14
- Connecting to Microsoft Azure blob - wodSupport, 2022-08-10, 23:15
- Connecting to Microsoft Azure blob - dfb, 2022-08-11, 02:59
- Connecting to Microsoft Azure blob - wodSupport, 2022-08-11, 23:20
- Connecting to Microsoft Azure blob - dfb, 2022-08-16, 02:08
- Connecting to Microsoft Azure blob - wodSupport, 2022-08-11, 23:20
- Connecting to Microsoft Azure blob - dfb, 2022-08-11, 02:59
- Connecting to Microsoft Azure blob - wodSupport, 2022-08-10, 23:15
- Connecting to Microsoft Azure blob - dfb, 2022-08-10, 07:14
- Connecting to Microsoft Azure blob - wodSupport, 2022-08-09, 09:45
- Connecting to Microsoft Azure blob - dfb, 2022-08-09, 09:28
- Connecting to Microsoft Azure blob - wodSupport, 2022-08-04, 09:24
- Connecting to Microsoft Azure blob - dfb, 2022-08-04, 03:07
- Connecting to Microsoft Azure blob - wodSupport, 2022-08-03, 09:14