What is the best way an android app can fetch views and query the database from a Django based site?
I am developing a website using Django framework. The web/mobile service comes with a Android app that authenticates the user, fetchs user-related authorized data, map locations from database and views from the website and displays them on the android device.
So far I have been contemplating to use XML-RPC to do this but I am not sure if this is the best solution.
For XML-RPC client, I am using the following library: http://code.google.com/p/android-xmlrpc/
An for the server I am using this python code: https://code.djangoproject.com/wiki/XML-RPC
I would like to know if there's a better or standard solution for doing this.