Re: [android-developers] Re: [ASK] HOW TO SEND LONGITUDE LATITUDE TO ANOTHER ANDROID PHONE VIA INTERNET..

2011-09-08 Thread Phạm Văn Qua
Thanks -- 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,

[android-developers] Re: [ASK] HOW TO SEND LONGITUDE LATITUDE TO ANOTHER ANDROID PHONE VIA INTERNET..

2011-09-07 Thread dede pradana
Thanks All.. i'll Learn more!! :)) On Sep 7, 8:44 am, Miguel Morales therevolti...@gmail.com wrote: Depending on the specs, and if it doesn't need to be realtime you can just use http and serialize your data with xml or json. Ultimately, these are skills any good developer should have and as

[android-developers] Re: [ASK] HOW TO SEND LONGITUDE LATITUDE TO ANOTHER ANDROID PHONE VIA INTERNET..

2011-09-06 Thread dede pradana
Okay Kris.. Thanks for your explanation.. :) well, if i'm using email service to send and receive longitude latitude.. what reference that i can use to send take data from email?? so my application can send it automatic periodically and another phone can take that data longlat from email, then

[android-developers] Re: [ASK] HOW TO SEND LONGITUDE LATITUDE TO ANOTHER ANDROID PHONE VIA INTERNET..

2011-09-06 Thread dede pradana
thanks logesh.. but, i'm asking about how to send LongLat data Point to Point.. from one android phone to another android phone via internet.. without server.. and not using socket programming.. cz i'm confuse if using socket programming with Private IP,, any other solution?? thanks before..

Re: [android-developers] Re: [ASK] HOW TO SEND LONGITUDE LATITUDE TO ANOTHER ANDROID PHONE VIA INTERNET..

2011-09-06 Thread Kristopher Micinski
You mean that you can't do it using socket programming because you don't know the IP? That's true, I spose... What you really need is a dedicated backend service if you'd like to ferry data between phones, there are a bunch of different ways to do this, you can write your own and exchange the

Re: [android-developers] Re: [ASK] HOW TO SEND LONGITUDE LATITUDE TO ANOTHER ANDROID PHONE VIA INTERNET..

2011-09-06 Thread Jim Graham
On Tue, Sep 06, 2011 at 08:43:00PM -0400, Kristopher Micinski wrote: You mean that you can't do it using socket programming because you don't know the IP? That's true, I spose... I think what he was saying is that he doesn't understand how to use socket programming. My response to that is,

Re: [android-developers] Re: [ASK] HOW TO SEND LONGITUDE LATITUDE TO ANOTHER ANDROID PHONE VIA INTERNET..

2011-09-06 Thread Kristopher Micinski
On Tue, Sep 6, 2011 at 9:33 PM, Jim Graham spooky1...@gmail.com wrote: On Tue, Sep 06, 2011 at 08:43:00PM -0400, Kristopher Micinski wrote: You mean that you can't do it using socket programming because you don't know the IP?  That's true, I spose... I think what he was saying is that he

Re: [android-developers] Re: [ASK] HOW TO SEND LONGITUDE LATITUDE TO ANOTHER ANDROID PHONE VIA INTERNET..

2011-09-06 Thread Miguel Morales
Depending on the specs, and if it doesn't need to be realtime you can just use http and serialize your data with xml or json. Ultimately, these are skills any good developer should have and as such you should try really hard to build it yourself and come back when you have any relevant android