Reputation: 2165
I'm building an Android application. So with this app I get the data from device throught bluetooth.
For this, I don't have problems. Now I want to send in real time the data at the server. But I don't know what type of Web Service I must building, and I don't know what library of Android that I must used.
Can we help me ?
Upvotes: 0
Views: 2091
Reputation: 11782
A lot of people ask the questions about real time data transfer. There are few technologies I am aware of, and may help other developers
1- Socket.iO
Socket.IO enables real-time bidirectional event-based communication. It works on every platform, browser or device, focusing equally on reliability and speed.
2- EventBus
EventBus is a publish/subscribe event bus for Android and Java.
3- MQTT Server
It was designed as an extremely lightweight publish/subscribe messaging transport.
4- Lightsteamer Lightstreamer is your one-stop shop for push notifications, data streaming, and realtime messaging. Power web, mobile, and IoT apps with realtime data.
It should be noted that lightstreamer is not free
Upvotes: 1