[android-developers] Re: Looking for Jersey/Restlet/REST recommendations

2012-03-29 Thread gc
I've implemented REST using Jersey on several projects and it's very 
lightweight and easy to use.

On Wednesday, March 28, 2012 3:44:44 PM UTC-5, Mark Phillips wrote:

 I forgot to include a subject line.

 On Wed, Mar 28, 2012 at 11:38 AM, Mark Phillips 
 m...@phillipsmarketing.biz wrote:

 My android app needs to talk to a MySQL database on a server. I have been 
 googling for solutions and found recommendations for Jersey and Restlet. I 
 have looked at these two frameworks, but from reading I cannot tell which 
 is better. I am new to REST, but have experience in Java, servlets, and 
 jsp. So I was wondering if anyone on this list has experience with one or 
 both, and any recommendations you may have. I am looking for a simple way 
 to CRUD data in my database (~ 15-20 tables). Any hands-on feedback is 
 appreciated!

 Thanks!

 Mark

 -- 
 You received this message because you are subscribed to the Google
 Groups Android Developers group.
 To post to this group, send email to android-developers@googlegroups.com
 To unsubscribe from this group, send email to
 android-developers+unsubscr...@googlegroups.com
 For more options, visit this group at
 http://groups.google.com/group/android-developers?hl=en



On Wednesday, March 28, 2012 3:44:44 PM UTC-5, Mark Phillips wrote:

 I forgot to include a subject line.

 On Wed, Mar 28, 2012 at 11:38 AM, Mark Phillips 
 m...@phillipsmarketing.biz wrote:

 My android app needs to talk to a MySQL database on a server. I have been 
 googling for solutions and found recommendations for Jersey and Restlet. I 
 have looked at these two frameworks, but from reading I cannot tell which 
 is better. I am new to REST, but have experience in Java, servlets, and 
 jsp. So I was wondering if anyone on this list has experience with one or 
 both, and any recommendations you may have. I am looking for a simple way 
 to CRUD data in my database (~ 15-20 tables). Any hands-on feedback is 
 appreciated!

 Thanks!

 Mark

 -- 
 You received this message because you are subscribed to the Google
 Groups Android Developers group.
 To post to this group, send email to android-developers@googlegroups.com
 To unsubscribe from this group, send email to
 android-developers+unsubscr...@googlegroups.com
 For more options, visit this group at
 http://groups.google.com/group/android-developers?hl=en




-- 
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

[android-developers] Re: Looking for Jersey/Restlet/REST recommendations

2012-03-28 Thread David Karr

On Wednesday, March 28, 2012 1:44:44 PM UTC-7, Mark Phillips wrote:

 I forgot to include a subject line.

 On Wed, Mar 28, 2012 at 11:38 AM, Mark Phillips 
 m...@phillipsmarketing.biz wrote:

 My android app needs to talk to a MySQL database on a server. I have been 
 googling for solutions and found recommendations for Jersey and Restlet. I 
 have looked at these two frameworks, but from reading I cannot tell which 
 is better. I am new to REST, but have experience in Java, servlets, and 
 jsp. So I was wondering if anyone on this list has experience with one or 
 both, and any recommendations you may have. I am looking for a simple way 
 to CRUD data in my database (~ 15-20 tables). Any hands-on feedback is 
 appreciated!


I would also recommend Apache CXF. Both Jersey and CXF are implementations 
of the JAX-RS specification. You would use either of these frameworks only 
on the server side, of course. There is a small client framework for CXF 
(not sure about Jersey), but it's not critical.

I've implemented several REST services with Apache CXF, which integrates 
very well with Spring, which integrates very well with databases.

-- 
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en