What can i use to send/receive data between an android client and a webserver.
Data can typically include:
Text, Images or videos.
As far as i have looked into, i cannot use JSON, since i cant sent images using this.
What can i use to send/receive data between an android client and a webserver.
Share
For that you have to use XML/JSON . If you want to send the Images on to the Server convert Image(Blob) to the String and Send that String to the Server and On server Side Convert String to the Blob and Store inside the database.
For that you can take reference from the following link :
http://blog.sptechnolab.com/2011/02/10/android/android-connecting-to-mysql-using-php/
http://www.vogella.de/articles/AndroidJSON/article.html