tags:

views:

38

answers:

2

I would like to create a Java-written RESTFul Web Service, possibly using an eclipse plugin.

This service should be consumed by an android application, using the apache HttpClient.

But my question is, which is the best/ideal technology (server side) to implement this kind of web service?

A: 

If it is going to be something simple you can either use Jersey or Spring and run it on Google App Engine.

BrennaSoft
+1  A: 

www.restlet.org, which is also Google App Engine compatible. I'm using it to implement a RESTful data-transmission service.

Chris Kaminski