Sockets would definitely work, but there is some overhead in using TCP/ IP versus UDP.
One thing you can do with streaming data is use UDP. Either data packets get to the server or they don't. But, the benefit is your client software doesn't have to manage state. That's if you want a live stream. The other option would be to use a store and forward approach. The phone gathers the data, stores it for a while and then sends it at regular intervals. Personally, I like UDP. Richard On Feb 16, 8:16 am, Abhi <abhishek.r.sha...@gmail.com> wrote: > i m sure there r many ways to do this... the easiest way i wud do it > is through sockets. Having the Client write everything to a file and > the server pulling this information every few seconds. > > Abhi > > On Feb 16, 8:23 am, Mjdgard <mjdg...@gmail.com> wrote: > > > I would like to continuously send/stream sensor data (GPS, > > acceleration, etc.) from a device to a server. What would be the best > > technology to do this? Is it possible to use RTSP? What else would you > > recommend me to use? > > > Thanks for any help, > > Martin -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to android-developers@googlegroups.com To unsubscribe from this group, send email to android-developers+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/android-developers?hl=en