Android Question Network and WebApp?

Arthur Ávila

Member
Licensed User
Considering a VPS which is running this B4J example https://www.b4x.com/android/forum/threads/b4x-network-asyncstreams-b4xserializator.72149/
I've used both B4A and B4J examples. Both B4A and B4J can communicate with the VPS.

I need a WebApp to communicate with the VPS.

Since prefix mode is a special B4X communications model, anyone has some example (Web) on how to pass and receive data to B4J server side?

I've been using XAMPP to the web part.
 

Didier9

Well-Known Member
Licensed User
Longtime User
I recommend you use text mode, it makes it much easier to communicate with a web server. If you need to send binary data, you can setup a binary transfer, but initial communication and link setup will be done using strict ASCII text.
If you do not have too much binary data to send, you can use Base64 to convert the binary data into ASCII and back.
 
Upvote 0
Top