0

I don't know what this is called, but it is something like syncing android application and a Web server. Examples are RSS Feeds and Weather Forecast

Does anyone know the concept behind developing application? I mean how do you sync the Android phone with a web server. Is there any programming needed in the server side and the client side(Android)

Are there any programming books that tackles this subject? Thanks.

Corbee
  • 5
  • 1

2 Answers2

0

What should I do to connect to Server from eclipse - Android?

check the whole conversation here

Community
  • 1
  • 1
Rohit Sharma
  • 13,787
  • 8
  • 57
  • 72
  • 1
    syncing means nothing more then hitting a url and reading the content and saving it in you application data buffer to be used in your app – Rohit Sharma Feb 21 '11 at 10:25
  • The code he wrote looks fine. just to add this, you'll have to keep polling the web server on regular intervals. – Aman Alam Feb 21 '11 at 10:25
0

The server should make the data available in a meaningfull parsable format (for machines). For example RSS/XML feeds, etc. Your application should poll frequently and updates the status/screen.

ankitjaininfo
  • 11,961
  • 7
  • 52
  • 75