When using KerberosV5 on a remote machine I get '0x8009030E has occurred in SSPI interop'
I have a web service on a domain with windows authentication. I use impersonation to run the following code
var credentials = new SshGssApiCredentials();
credentials.SetMechanisms(SshGssApiMechanisms.KerberosV5);
var ssh = new Ssh();
string toReturn;
try
{
ssh.Connect(emulatorName);
ssh.Login(credentials);
toReturn = ssh.RunCommand(command);
}
catch (SshException sshException)
{
toReturn = sshException.Message;
}
if (ssh.IsConnected) ssh.DisconnectAsync();
return toReturn;
What's odd is this is working perfectly on my development platform (Win 7 x64)from my development platform.
It's when I try to trigger the call from a remote platform that I encounter this error.