Re: Contents of Receive Buffer (General questions)
Hello,
You can definitely download it and try it out for 30 days or so, go to http://www.winbatch.com/download.html and click on the download link under: Winbatch, or here is a direct link: http://files.winbatch.com/wwwftp/wb01/wb44i07c.zip
They also have a fantastic web board to post questions on: http://webboard.winbatch.com/
Once you download the studio, start it up and save your file with a .wbt extension.
Here is my starting point in the code:
objSSH = ObjectCreate( WeOnlyDo.wodSSHCom.1 )
objSSH.HostName = IP
objSSH.Port = Port
objSSH.Login = UserName
objSSH.Password = Password
objSSH.Blocking = 1
objSSH.Protocol = 4
objSSH.Timeout = 5
t1 = objSSH.Connect
;I was hoping this would return a 1 or 0, and not an exception which get's harder to trap
t1 = objSSH.WaitFor( [513] )
;again, hoping a return code instead of an exception would be sent back to me
;at some point I would need to see what is sitting in the receive buffer if the above doesn't work
objSSH.Disconnect
Thanks again for your help!
Barry
Complete thread:
- Contents of Receive Buffer - bmclellan, 2007-08-23, 15:15
- Re: Contents of Receive Buffer - wodDamir, 2007-08-23, 15:31
- Re: Contents of Receive Buffer - bmclellan, 2007-08-23, 17:08
- Re: Contents of Receive Buffer - wodSupport, 2007-08-23, 18:34
- Re: Contents of Receive Buffer - wodSupport, 2007-08-23, 18:35
- Re: Contents of Receive Buffer - bmclellan, 2007-08-23, 18:52
- Re: Contents of Receive Buffer - wodDamir, 2007-08-23, 21:02
- Re: Contents of Receive Buffer - bmclellan, 2007-08-23, 21:11
- Re: Contents of Receive Buffer - wodDamir, 2007-08-23, 21:27
- Re: Contents of Receive Buffer - bmclellan, 2007-08-24, 06:32
- Re: Contents of Receive Buffer - wodDamir, 2007-08-24, 07:04
- Re: Contents of Receive Buffer - bmclellan, 2007-08-24, 18:22
- Re: Contents of Receive Buffer - wodDamir, 2007-08-24, 18:51
- Re: Contents of Receive Buffer - bmclellan, 2007-08-24, 18:22
- Re: Contents of Receive Buffer - wodDamir, 2007-08-24, 07:04
- Re: Contents of Receive Buffer - bmclellan, 2007-08-24, 06:32
- Re: Contents of Receive Buffer - wodDamir, 2007-08-23, 21:27
- Re: Contents of Receive Buffer - bmclellan, 2007-08-23, 21:11
- Re: Contents of Receive Buffer - wodDamir, 2007-08-23, 21:02
- Re: Contents of Receive Buffer - bmclellan, 2007-08-23, 18:52
- Re: Contents of Receive Buffer - wodSupport, 2007-08-23, 18:35
- Re: Contents of Receive Buffer - wodSupport, 2007-08-23, 18:34
- Re: Contents of Receive Buffer - bmclellan, 2007-08-23, 17:08
- Re: Contents of Receive Buffer - wodDamir, 2007-08-23, 15:31