It appears that in your older version, people were able to pass in TlsParameters to overcome Server certificate was rejected by the verifier because of an unknown certificate authority errors while using FTP. The current version no longer allows this option and I am stuck.
I purchased your software today instead of writing my own code to save time as I am under an incredibly tight deadline. I really need to figure this out ASAP if at all possible.
Currently I can use a range of FTP products to connect with no issue but your software bombs every time with the same error.
Can you please let me know how to overcome this error? Here is my code:
TlsParameters par = new TlsParameters();
par.CertificateVerifier = new FingerprintVerifier();
rebexClient.Connect(ConfigurationManager.AppSettings["RebexUrl"], int.Parse(ConfigurationManager.AppSettings["RebexPort"]), SslMode.Implicit);