Server asks for authentication with a client certificate
Hello, I have troubles with .NET library. I can successfully connect to ftp server and get files, but I when I use PutFiles method, I always get this message as output:
Error message: Server asks for authentication with a client certificate. Copying files to remote side failed. Failure reading network stream.
My session options were generated by WinSCP app.
I really don't know, why is this happening. Any ideas? Thanks
PS: FTP user has full permissions, in FTP client I can upload files to the server without any problem.
Error message: Server asks for authentication with a client certificate. Copying files to remote side failed. Failure reading network stream.
My session options were generated by WinSCP app.
SessionOptions sessionOptions = new SessionOptions { Protocol = Protocol.Ftp, HostName = ".....", UserName = "....", Password = "....", FtpSecure = FtpSecure.Explicit, TlsHostCertificateFingerprint = "................" };
I really don't know, why is this happening. Any ideas? Thanks
PS: FTP user has full permissions, in FTP client I can upload files to the server without any problem.