The idea is that a record stores data of a flight.
The record is send by TCP to the 'About Time' server for storage and display with About Time web client at https://abouttime.flyingneurons.io
I do receive the Connected event, but it always returns False.
What am I doing wrong or is missing.
Is there anybody out there who can help me?
Very much appreciated
Cenny
The record is send by TCP to the 'About Time' server for storage and display with About Time web client at https://abouttime.flyingneurons.io
- the address is : abouttimetcp.flyingneurons.io
- the port to use is 40640
main:
If astreams.IsInitialized Then
astreams.Close
End If
socket1.Initialize("socket1")
'socket1.Connect("15.236.175.34",40640,0)
socket1.Connect("abouttimetcp.flyingneurons.io",40640,0)
Wait For socket1_Connected(successful As Boolean)
ToastMessageShow("socket1_connected event fired",False)
If successful Then
SetState(True)
astreams.Initialize(socket1.InputStream,socket1.OutputStream,"astreams")
End If
I do receive the Connected event, but it always returns False.
What am I doing wrong or is missing.
Is there anybody out there who can help me?
Very much appreciated
Cenny