Eme Fibonacci Well-Known Member Licensed User Longtime User Apr 14, 2019 #1 I bought a device that sends data to vendor server. I can change the server address and the port. So I could build my own server and deal with data. My problem: I have no idea how this data is posted or what format. How can I create a b4j server and analyze what is being posted? Many thanks.
I bought a device that sends data to vendor server. I can change the server address and the port. So I could build my own server and deal with data. My problem: I have no idea how this data is posted or what format. How can I create a b4j server and analyze what is being posted? Many thanks.
Erel B4X founder Staff member Licensed User Longtime User Apr 14, 2019 #2 As you don't know the protocol you should start with ServerSocket. Open the port and use AsyncStreams to log the input. The next step is to determine the protocol. Upvote 0
As you don't know the protocol you should start with ServerSocket. Open the port and use AsyncStreams to log the input. The next step is to determine the protocol.