FTPS Connection using implicit TLS
Hi, I am using the following code to connect to FTP server that uses implicit TLS
SessionOptions sessionOptions = new SessionOptions
{
Protocol = Protocol.Ftp,
HostName = uploaderConfiguration.FtpServer,
UserName = uploaderConfiguration.FtpUserName,
Password = uploaderConfiguration.FtpPassword,
FtpSecure = WinSCP.FtpSecure.Implicit,
GiveUpSecurityAndAcceptAnySslHostCertificate = true,
PortNumber = 990
};
After doing session.PutFiles I call trasferResult.Check() and that is when I get following exception - {WinSCP.SessionRemoteException: Error transferring file 'c:\test\Test_ForexRates_20150625.txt'. ---> WinSCP.SessionRemoteException: Copying files to remote side failed.
The specified network name is no longer available.
Could you please let me know what that means and what is causing this. The WINSCP DLL version is 5.5.6.0
I have also attached the debug file
SessionOptions sessionOptions = new SessionOptions
{
Protocol = Protocol.Ftp,
HostName = uploaderConfiguration.FtpServer,
UserName = uploaderConfiguration.FtpUserName,
Password = uploaderConfiguration.FtpPassword,
FtpSecure = WinSCP.FtpSecure.Implicit,
GiveUpSecurityAndAcceptAnySslHostCertificate = true,
PortNumber = 990
};
After doing session.PutFiles I call trasferResult.Check() and that is when I get following exception - {WinSCP.SessionRemoteException: Error transferring file 'c:\test\Test_ForexRates_20150625.txt'. ---> WinSCP.SessionRemoteException: Copying files to remote side failed.
The specified network name is no longer available.
Could you please let me know what that means and what is causing this. The WINSCP DLL version is 5.5.6.0
I have also attached the debug file