RemoteException wrapping System.AggregateException: One or more errors occurred. —> RemoteException wrapping Renci.SshNet.Common.SshConnectionException: An established connection was aborted by the server. at Renci.SshNet.Common.AsyncResult.EndInvoke() at Renci.SshNet.SftpClient.EndUploadFile(IAsyncResult asyncResult) at System.Threading.Tasks.TaskFactory`1.FromAsyncCoreLogic(IAsyncResult iar, upath
You have an issue with Client not connected.
Check these articles:
@jitu007
i guess you are using FileZilla, you are connecting to implicit FTPS port 990.
If you also use this port in C#, you cannot use connection as FtpEncryptionMode.Explicit .so Use connection as FtpEncryptionMode.Implicit .
if your are already using FtpEncryptionMode.Implicit try to change to FtpEncryptionMode.Explicit and try visa versa
better use connection to port 21 and keep using FtpEncryptionMode.Explicit , if that port is available.
below is the one which i am using
[imag…
Add a With ftp session activity and try to configure it as below (adapt it with your details)
Activity: With FTP session
Credentials:
Password: "YOUR_PASSWORD"
Username: "YOUR_SSH_USERNAME"
Security:
Accept all certificates [v] (if needed, check internally if it is required)
Select Use SFTP [v]
Server:
Host: "YOUR_DOMAIN_NAME"
Port: YOUR_SSH_PORT (without quotes)
Activity: Upload Files:
Input:
Local Path: "D:\HomeLab\bla.jpg" → change this with your file to upload
remote path: "…
Thanks …I changed my solution …I am yet to try the FTP approach…couldnt find the package so worked on some other approach
https://www.hostgator.com/help/article/why-does-my-ftp-fail-to-connect
Hi bro, its not working. Is there any other way?