Re: My Wodssh1 is not working as a telnet client. - WeOnlyDo Discussion board

Re: My Wodssh1 is not working as a telnet client. (General questions)

by Luis Galiano, Wednesday, September 01, 2004, 12:09 (7176 days ago) @ wodSupport

Hello Kreso,

I tried out your solution and It worked. Thank you very much for your help and your patience.

Greetings,

Luis

Luis,

can you please create new VB project, add reference to 'WeOnlyDo! SSH/Telnet Component' to your project, and then paste this code and run it. Does it work for you. I just tried it here - it does ok for me.
[code]Private Sub Form_Load()
Dim wodSSH1 As wodSSHCom
Set wodSSH1 = New wodSSHCom

wodSSH1.Protocol = Telnet
wodSSH1.Blocking = True
wodSSH1.HostName = ******** (modified)
wodSSH1.Login = test1
wodSSH1.Password = ****** (modified)
wodSSH1.Port = 23
wodSSH1.Timeout = 30
wodSSH1.Command = echo Hello
wodSSH1.connect
Debug.Print wodSSH1.Receive

End Sub[/code]
Let me know.
Kreso


Complete thread: