receive output (wodSSH / wodSSH.NET)
Ganesh,
I don't know what's going on under the hood, but you can try not to use WaitFor, and rather use Receive method, in a loop.
What you should do is define global variable
Dim InBuffer as String
and then in a loop do something like this
do
InBuffer = InBuffer + Ssh1.Receive
if InStr(InBuffer, 1, "something_I_need_inside") then goto out
loop
or something similar to this. THis way you can control more than one thing in the buffer, and have full buffer that is arriving for your own usage.
Can you try something like that?
Kreso
Complete thread:
- receive output - ganesh sankpal, 2014-08-06, 16:44
- receive output - wodSupport, 2014-08-06, 19:58
- receive output - ganesh sankpal, 2014-08-07, 16:12
- receive output - wodSupport, 2014-08-07, 19:25
- receive output - Ganesh Sankpal, 2014-08-28, 10:51
- receive output - wodSupport, 2014-08-28, 15:22
- receive output - Ganesh Sankpal, 2014-09-02, 14:38
- receive output - wodSupport, 2014-09-02, 17:01
- receive output - Ganesh Sankpal, 2014-09-03, 08:34
- receive output - wodSupport, 2014-09-03, 09:49
- receive output - Ganesh Sankpal, 2014-09-03, 12:06
- receive output - wodSupport, 2014-09-03, 12:07
- receive output - Ganesh Sankpal, 2014-09-03, 13:04
- receive output - wodSupport, 2014-09-03, 13:49
- receive output - Ganesh Sankpal, 2014-11-12, 08:37
- receive output - Jasmine, 2014-11-12, 10:56
- receive output - Ganesh Sankpal, 2014-11-12, 14:33
- receive output - Jasmine, 2014-11-12, 16:33
- receive output - Ganesh Sankpal, 2014-11-13, 06:36
- receive output - Jasmine, 2014-11-13, 16:19
- receive output - Ganesh Sankpal, 2014-11-13, 06:36
- receive output - Jasmine, 2014-11-12, 16:33
- receive output - Ganesh Sankpal, 2014-11-12, 14:33
- receive output - Jasmine, 2014-11-12, 10:56
- receive output - Ganesh Sankpal, 2014-11-12, 08:37
- receive output - wodSupport, 2014-09-03, 13:49
- receive output - Ganesh Sankpal, 2014-09-03, 13:04
- receive output - wodSupport, 2014-09-03, 12:07
- receive output - Ganesh Sankpal, 2014-09-03, 12:06
- receive output - wodSupport, 2014-09-03, 09:49
- receive output - Ganesh Sankpal, 2014-09-03, 08:34
- receive output - wodSupport, 2014-09-02, 17:01
- receive output - Ganesh Sankpal, 2014-09-02, 14:38
- receive output - wodSupport, 2014-08-28, 15:22
- receive output - Ganesh Sankpal, 2014-08-28, 10:51
- receive output - wodSupport, 2014-08-07, 19:25
- receive output - ganesh sankpal, 2014-08-07, 16:12
- receive output - wodSupport, 2014-08-06, 19:58