ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

Help / WLanguage / WLanguage functions / Communication / Sockets
  • Communication with robots or with non-WINDEV applications
  • Transmission between two computers that use character strings in different formats (UNICODE and ANSI)
  • Required permissions
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
Retrieves a message sent by another socket. This function can be used on a client computer or on a server.
Remarks:
  • UDP socket: The UDP protocol being a "connectionless protocol", when retrieving the message, WINDEV saves the IP address and port of the computer that sent the message. This information is returned by SocketClientInfo.
  • SSL socket: SocketRead can be used with the SSL sockets.
Reminder: A socket is a communication resource used by applications to communicate from one computer to another regardless of the type of network.
Syntax
<Result> = SocketRead(<Socket name> [, <Undefined wait> [, <Maximum timeout> [, <Maximum number of bytes>]]])
<Result>: Buffer or character string
  • Message read.
  • Empty buffer or empty string ("") if no message was received.
<Socket name>: Character string
Name of the socket that received the message.
In the WINDEV applications:
<Undefined wait>: Optional boolean
  • True (default value): undefined wait for a client message.
  • False: wait until the <Maximum timeout>.
<Maximum timeout>: Optional integer or optional Duration
Maximum timeout (in milliseconds) of a client message if the undefined wait is set to False. 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).
By default, this timeout is set to 1000 milliseconds (1 second).
<Maximum number of bytes>: Optional integer
Maximum number of characters that can be transmitted. The number of characters received is not guaranteed.
This parameter is taken into account only if the SocketNoEndTag constant is specified in SocketChangeTransmissionMode. Otherwise, this parameter is ignored.
This parameter is set to 4096 bytes by default.
Remarks

Communication with robots or with non-WINDEV applications

To simplify the exchanges of data by socket, a transmission mode is initialized by default.
For a communication with an external module (non-WINDEV application, robot, ...), this transmission mode can prevent the communications from operating properly.
SocketChangeTransmissionMode is used to change this transmission mode: the SocketNoEndTag constant allows you not to modify the frames read and written.

Transmission between two computers that use character strings in different formats (UNICODE and ANSI)

It may be necessary to convert strings in order to send messages between two computers that uses different encodings (e.g., ANSI and UNICODE). These conversions can be made by AnsiToUnicode and UnicodeToAnsi.
AndroidAndroid Widget

Required permissions

The call to this function modifies the permissions required by the application.
Required permission : INTERNET
This permission allows the applications to open the network sockets.
Component: wd270com.dll
Minimum version required
  • Version 9
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 06/21/2023

Send a report | Local help