You are aware, right, that both the FTP and HTTP protocols use TCP to 
send/receive data?  

But I get the idea you want some "simple" answer so that you can toss your 
stream of video data at a program running on a PC somewhere and have it 
magically get stored in a file.  Without having to save the data to a file 
on the device.  Correct?

There is NO easy answer to this.  

You will either have to utilize an existing protocol/server as suggested 
(FTP/HTTP) or roll your own server and protocol to accept your incoming 
data stream.  In addition you will have to handle all the authentication 
issues yourself.

If it were me, I would save off the data to a file on the device then push 
it via FTP to a FTP Server somewhere.  This is going to be a LOT less 
complicated than trying to implement your own server code on the PC side.

Gathering data is often much easier than figuring out how to transmit the 
data or store it.

Terry

-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Reply via email to