Re: Stopped working (General questions)
Hi,
I'm not sure, your code look much same. Maybe you insert hostname, login or password value incorrectly. Can you maybe check that?
What happens if you run this simple code:
[code]ssh1 = new WeOnlyDo.Client.SSH();
ssh1.Hostname = your:hostname ;
ssh1.Blocking = true;
ssh1.Protocol = WeOnlyDo.Client.SSH.SupportedProtocols.SSHAuto;
ssh1.Login = your_login ;
ssh1.Password = your_password ;
ssh1.Connect();
MessageBox.Show(ssh1.Receive());[/code]
Drazen