Recieve problem (General questions)
I have a bit of a problem again, this time with the .Recieve method.
I logon to a Win2003 host with Telnet, and run a command. The output of this command, when run directly on the server, looks like below.
prosrm-2003:C:WINDOWSPrefetch, 1 browsable cycle(s)
5 browsable files of 5 total, 494 KB recoverable of 494 KB total
But when i run everything from within VB, the output looks like below.
It seems to miss the first few bytes, in this case prosrm-2003: .
C:WINDOWSPrefetch, 1 browsable cycle(s)
5 browsable files of 5 total, 494 KB recoverable of 494 KB total
Here´s my code, any suggestions as to why i get this behavior?
I don´t have any problems when i use SSH to Unix hosts.
[code]
With wodSSH1
.Disconnect
.HostName = server
.Login = user
.Password = psw
.Port = 23
.Protocol = Telnet
.TerminalType = dumb
.StripANSI = True
.Blocking = True
.Connect
.WaitFor regex:[C:>] , 5
.Prompt = regex:[C:>]
End With
If wodSSH1.DataReady > 0 Then wodSSH1.Receive
wodSSH1.Execute ( nsrim -X & vbCrLf)
temp = wodSSH1.Receive
[/code]
Cheers!
Maverick
Complete thread:
- Recieve problem - Maverick2004, 2005-02-15, 14:27
- Re: Recieve problem - wodSupport, 2005-02-15, 14:30
- Re: Recieve problem - Maverick2004, 2005-02-15, 14:50
- Re: Recieve problem - wodSupport, 2005-02-15, 14:53
- Re: Recieve problem - Maverick2004, 2005-02-15, 15:28
- Re: Recieve problem - wodSupport, 2005-02-16, 23:54
- Re: Recieve problem - Maverick2004, 2005-02-17, 08:24
- Re: Recieve problem - Maverick2004, 2005-02-17, 08:26
- Re: Recieve problem - wodSupport, 2005-02-17, 23:22
- Re: Recieve problem - Maverick2004, 2005-02-18, 13:49
- Re: Recieve problem - wodSupport, 2005-02-18, 15:56
- Re: Recieve problem - Maverick2004, 2005-02-23, 09:41
- Re: Recieve problem - wodSupport, 2005-02-23, 12:21
- Re: Recieve problem - Maverick2004, 2005-02-24, 16:17
- Re: Recieve problem - wodSupport, 2005-02-24, 20:42
- Re: Recieve problem - Maverick2004, 2005-02-28, 14:16
- Re: Recieve problem - wodSupport, 2005-02-24, 20:42
- Re: Recieve problem - Maverick2004, 2005-02-24, 16:17
- Re: Recieve problem - wodSupport, 2005-02-23, 12:21
- Re: Recieve problem - Maverick2004, 2005-02-23, 09:41
- Re: Recieve problem - wodSupport, 2005-02-18, 15:56
- Re: Recieve problem - Maverick2004, 2005-02-18, 13:49
- Re: Recieve problem - wodSupport, 2005-02-17, 23:22
- Re: Recieve problem - Maverick2004, 2005-02-17, 08:26
- Re: Recieve problem - Maverick2004, 2005-02-17, 08:24
- Re: Recieve problem - wodSupport, 2005-02-16, 23:54
- Re: Recieve problem - Maverick2004, 2005-02-15, 15:28
- Re: Recieve problem - wodSupport, 2005-02-15, 14:53
- Re: Recieve problem - Maverick2004, 2005-02-15, 14:50
- Re: Recieve problem - wodSupport, 2005-02-15, 14:30