Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to use a server to store/receive data?

Tags:

android

I am wondering what is required to setup a server so that you can store data on it, and then have an application send requests to it to store and receive data. More specifically, I am working on an Android application where a user will generate data and then that should be stored on a server so other users can access it. But I do not know how setting up a server to be capable of this works. I have worked on Android applications in the past that sends requests (put, post, get, etc) to a server, but that back end was already set up for me. Any info or resources about setting this up would be great.

like image 460
rob north Avatar asked Jun 18 '11 21:06

rob north


1 Answers

There are many, many different ways to accomplish this.

Since you're already working with a Google technology, Android - you could start by creating a Google App Engine project. Following the tutorials you can get started setting up a simple back end solution that will store data for you and you can make requests to it for that data.

Another advantage to this for you is that you don't have to learn how to install software on a server and all the dependencies that arise from that, etc. Simply set up a new account and push-button deploy through Eclipse or command line.

And since you've used Java in Android, you can use JAva for Google App Engine (GAE) too!

Getting started: http://code.google.com/appengine/docs/java/gettingstarted/introduction.html

like image 176
citizen conn Avatar answered Nov 29 '22 03:11

citizen conn