Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm about to build an Android application that will use a RESTful Web Service. I don't want to write the REST client by myself, as I want it to be as effective and stable as possible (this is the first time I'm using REST).

Are there any (free) frameworks or utilities avaibale for Android/Java that I can use in my project?

/Gustav

share|improve this question
SOAPUI can make REST calls, does that help? – user155695 Feb 9 '11 at 13:12
For what I understand SOAPUI is a framework for testning? I also need support for JSON. – Gustav Gahm Feb 9 '11 at 13:46
There is source code for a rest client on this page + some help, (it is for jira but should be usable for android as well) j-tricks.com/1/post/2012/05/… – martin Apr 24 at 17:25

closed as not constructive by cHao, Lukas Knuth, P.T., codeMagic, Niall C. Apr 25 at 3:23

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.

5 Answers

up vote 23 down vote accepted

Restlet is an excellent REST framework and has an Android edition.

share|improve this answer
Restlet looks promising. I will definitely try it out. Thanks! – Gustav Gahm Feb 10 '11 at 7:07
7  
as good as it may be. I cant warrant changing a 0.3MB APK into 22MB with all these added files – Doomsknight Aug 24 '12 at 13:10
1  
@Doomsknight it's called Proguard – Zed Scio Dec 21 '12 at 1:31

try out Spring Android - is has very handy class RestTemplate.

share|improve this answer
Triggers a lot of GC_CONCURRENT for me, does it have some memory issues ? – Timothée Jeannin Jan 6 at 13:33

Any HTTP Client library should be perfectly adequate to interact RESTfully with a web API. E.g. http://developer.android.com/reference/org/apache/http/client/HttpClient.html

share|improve this answer
To the downvoter, feel free to explain why HTTPClient is insufficient to interact with a RESTful system who's core constraint is conforming to the "Uniform Interface" which in this case is defined by RFC2616. – Darrel Miller Feb 9 '11 at 13:59
I wasn't the down voter, but I would imagine it could be because HttpClient only solves part of the problem, then you've got all that XML handling to do. Maybe HttpClient + SAX, or HttpClient and XmlPullParser would be a more complete answer. YMMV – mezmo Feb 9 '11 at 15:35
Darrel: I have tried Apache's HTTPClient. But as i said, I do not want to write the complete REST client by myself. – Gustav Gahm Feb 10 '11 at 7:11
mezmo: thanks for the tip, but I'm looking for something more complete. I would like to write code like this: Object response = RestClient.get("example.com/api/news"); or Object response = RestClient.delete("example.com/api/news";, 20); – Gustav Gahm Feb 10 '11 at 7:15
2  
@Gustav sigh. I guess this crest.codegist.org/android.html is exactly what you are looking for. But please remember, what you are doing will not give you the benefits of REST. If you don't mind, that's cool. – Darrel Miller Feb 10 '11 at 13:57

check out Resting - "Lightweight Java component to consume REST service and transform response into objects"

http://code.google.com/p/resting/

i haven't used it myself, but i plan to.

to go along with it, i'm searching for example source code to implement the best practices described in this google IO session. http://www.youtube.com/watch?v=xHXn3Kg2IQE

share|improve this answer
+1 for the google IO session! – Jeshurun Apr 7 '12 at 11:01
2  
Seems that resting is not receiving any development and fails to POST data to a REST service. – Rene Apr 9 '12 at 7:27
@Rene Looks like an update was just pushed to address this issue: code.google.com/p/resting/source/detail?r=123 – Ron Elliott Mar 2 at 16:22

I'm also looking for a SMALL solution for rest client on Android. After a quick comparison, I found:

  • Resting v0.7: resting-0.7-dev-release-android.jar - 1.3MB (all-in-one according to the doc)
  • Restlet v2.1.2: org.restlet.jar - 728KB (however must > 1MB after adding httpclient extention and json extention)
  • Spring for Android v1.0.1: spring-android-core-1.0.1.RELEASE.jar 113KB + spring-android-rest-template-1.0.1.RELEASE.jar 186KB + gson-2.2.3.jar 194KB = 493KB (without auth support, otherwise spring social will be a dependency)

Please correct me if any miss.

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.