Android Question Websockets, communicating with Python

jimseng

Active Member
Licensed User
Longtime User
Hello.
I am just starting with web sockets, I'm not even sure how to ask this question but here goes.
I have a python websocket server using and a python web socket client and can send messages from the client to the server. I also have the B4A example and can send binary (or strings) to the server and the server copies them to connected clients. When I send from my B4A example I see the data received from the server and also copied to the client but I can't find a way, or at least I am not getting anything back from the server into my B4A app. I'm not sure if I am going down the wrong path.
I'm not sure if the B4A client example can receive back from the server?
Any thoughts?
 

jimseng

Active Member
Licensed User
Longtime User
Thanks Erel. I had jumped the gun and was sending a byte array (ws.SendBinary) but hadn't handled the BinaryMessage event. It makes a little bit more sense now.
 
Upvote 0
Top