Re: My Wodssh1 is not working as a telnet client. (General questions)
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 = ***
wodSSH1.Login = ***
wodSSH1.Password = ***
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:
- My Wodssh1 is not working as a telnet client. - Luis Galiano, 2004-08-31, 13:58
- Re: My Wodssh1 is not working as a telnet client. - wodSupport, 2004-08-31, 14:01
- Re: My Wodssh1 is not working as a telnet client. - Luis Galiano, 2004-08-31, 14:10
- Re: My Wodssh1 is not working as a telnet client. - Luis Galiano, 2004-08-31, 14:13
- Re: My Wodssh1 is not working as a telnet client. - wodSupport, 2004-08-31, 14:29
- Re: My Wodssh1 is not working as a telnet client. - Luis Galiano, 2004-08-31, 14:39
- Re: My Wodssh1 is not working as a telnet client. - wodSupport, 2004-08-31, 14:40
- Re: My Wodssh1 is not working as a telnet client. - Luis Galiano, 2004-08-31, 14:46
- Re: My Wodssh1 is not working as a telnet client. - Luis Galiano, 2004-08-31, 16:54
- Re: My Wodssh1 is not working as a telnet client. - wodSupport, 2004-08-31, 23:52
- Re: My Wodssh1 is not working as a telnet client. - Luis Galiano, 2004-09-01, 12:09
- Re: My Wodssh1 is not working as a telnet client. - wodSupport, 2004-09-01, 14:31
- Re: My Wodssh1 is not working as a telnet client. - Luis Galiano, 2004-09-01, 12:09
- Re: My Wodssh1 is not working as a telnet client. - wodSupport, 2004-08-31, 23:52
- Re: My Wodssh1 is not working as a telnet client. - Luis Galiano, 2004-08-31, 16:54
- Re: My Wodssh1 is not working as a telnet client. - Luis Galiano, 2004-08-31, 14:46
- Re: My Wodssh1 is not working as a telnet client. - wodSupport, 2004-08-31, 14:40
- Re: My Wodssh1 is not working as a telnet client. - Luis Galiano, 2004-08-31, 14:39
- Re: My Wodssh1 is not working as a telnet client. - wodSupport, 2004-08-31, 14:29
- Re: My Wodssh1 is not working as a telnet client. - Luis Galiano, 2004-08-31, 14:13
- Re: My Wodssh1 is not working as a telnet client. - Luis Galiano, 2004-08-31, 14:10
- Re: My Wodssh1 is not working as a telnet client. - wodSupport, 2004-08-31, 14:01