ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

Help / WLanguage / WLanguage functions / Communication / SSH functions
WINDEV
WindowsLinuxUniversal Windows 10 AppJavaReports and QueriesUser code (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Browser code
WINDEV Mobile
AndroidAndroid Widget iPhone/iPadIOS WidgetApple WatchMac CatalystUniversal Windows 10 App
Others
Stored procedures
Reads the data found on the output buffer of the SSH session.
// The session was started by SSHConnectShell
 
// Read the console of SSH shell after sending a command
// with SSHWrite
WHILE True
 
// Consume the content of the console by leaving 1s rest
sStdBuffer = SSHRead(cMySession, 1000, sshStandardOutput)
 
// As long as the console is empty
IF sStdBuffer = "" THEN
...
// See the full example
...
END
END
Syntax
<Result> = SSHRead(<SSH session> , <Timeout> [, <Output stream>])
<Result>: Buffer
Data read on the SSH session.
<SSH session>: sshSession variable
Name of the sshSession variable corresponding to the SSH session to be used.
<Timeout>: Integer ou Duration
Maximum timeout to receive the data (expressed in milliseconds). This parameter can correspond to:
  • an integer corresponding to the number of milliseconds,
  • a Duration variable,
  • the duration in a readable format (e.g., 1 s or 10 ms).
This parameter is set to 1000 ms by default.
<Output stream>: Optional Integer constant
Type of stream to read:
sshErrorOutputThe data is read on the output buffer if an error occurred.
sshStandardOutput
(default value)
The data is read on the standard output buffer.
Business / UI classification: Business Logic
Component: wd290com.dll
Minimum version required
  • Version 20
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 05/26/2022

Send a report | Local help