Hi We get this exception "A call to SSPI failed, see inner exception." when we try to connect. It's thrown from ConnectSSL method (SslStream.AuthenticateAsClient).
The inner exception is "The message received was unexpected or badly formatted"
Our code is really simple:
using (Ftp client = new Ftp())
{
client.ConnectSSL("ftp.XXX.com");
client.Close();
}
We are able to connect using FileZilla. What does this exception mean?