[android-developers] Re: Streaming Sensor Data from Device to a server

2010-03-06 Thread Richard Schilling
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

[android-developers] Re: Streaming Sensor Data from Device to a server

2010-02-16 Thread Abhi
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