Create a TCP/IP client connection called t
, connecting to a TCP/IP echo server with port 4000. To do so, you must have an echotcpip
server running on port 4000.
t =
tcpclient with properties:
Address: 'localhost'
Port: 4000
NumBytesAvailable: 0
Show all properties, functions
Write the values [1,2,3,4,5]
as a binblock in uint8 format.
Write another binblock of data. Write the values [6,7,8,9,10]
as double data.
Since the client is connected to an echo server, the data you write to the server is returned to the client. Read the first binblock of data that you wrote.
Read a binblock of data again to return the second set of values that you wrote. Specify the data as double
.
Close the connection between the TCP/IP client and the remote host by clearing the object. Turn off the echotcpip
server.