I'm trying to test ServerValidation property. i'm using GlobalScape secure FTP server. i've created a server certificate with this server and i've installed it on TrustedRoot on the client machine. on this client machine I have too applications that uses edtftpPro, a desktop application and a windows service.
I set server validation using the following line
ftp.ServerValidation = ProFTPClient.ServerValidationType.AutomaticNoNameCheck
when I run the two application I got error on the line
ftp.Auth(ProFTPClient.SecurityMechanism.TLS)
Desktop Application:
The certificate could not be verified: NoCNMatch
Windows Service:
The certificate could not be verified: UntrustedRoot
it's mentioned in the manual that I can use "AutomaticNoNameCheck" for testing. but it's not working here, can you please tell me why?