Re: [appengine-java] json communication with google app engine

2012-01-17 Thread Wilson MacGyver
Jackson is very nice for JSON too http://jackson.codehaus.org/ On Jan 16, 2012, at 7:57 PM, Carter Maslan car...@maslan.com wrote: We have been happy with our use gson on server side too: of http://code.google.com/p/google-gson/ On Mon, Jan 16, 2012 at 4:44 PM, Bruno Fuster

Re: [appengine-java] json communication with google app engine

2012-01-17 Thread Jeff Schnitzer
I use Resteasy with Jackson. It works great. Uses the standard JAX-RS annotations. http://docs.jboss.org/resteasy/docs/2.3.0.GA/userguide/html_single/index.html Jeff On Mon, Jan 16, 2012 at 11:51 PM, angstrom348 linux.mod...@gmail.com wrote: I am trying to allow for app engine interaction

Re: [appengine-java] json communication with google app engine

2012-01-17 Thread Jeff Schnitzer
As a bonus, you can also use Resteasy for webpage rendering using this thin framework on top: http://code.google.com/p/htmleasy/ (I wrote it originally, although another guy maintains it now. I still use it, and - if I may say so - it's great) Jeff On Wed, Jan 18, 2012 at 12:38 AM, Jeff

Re: [appengine-java] json communication with google app engine

2012-01-17 Thread Wilson MacGyver
I'm curious if you could share why you picked resteasy over jersey of other jax-rs implementations? On Jan 17, 2012, at 7:38 PM, Jeff Schnitzer j...@infohazard.org wrote: I use Resteasy with Jackson. It works great. Uses the standard JAX-RS annotations.

Re: [appengine-java] json communication with google app engine

2012-01-17 Thread Jeff Schnitzer
I have a long history with JBoss, plus I have friends who still work there - although I don't know Bill Burke well and don't particularly love the way he runs Resteasy (insufficiently self-critical for my tastes, and not enough internal code comments). That said, Resteasy works well, the product

[appengine-java] json communication with google app engine

2012-01-16 Thread angstrom348
I am trying to allow for app engine interaction through JSON calls and return JSON back to the client (a mobile phone running a client app). A good example exists for python users at http://code.google.com/appengine/articles/rpc.html. How would you set up a basic ability to listen for JSON

Re: [appengine-java] json communication with google app engine

2012-01-16 Thread Bruno Fuster
Hi, I have an iphone app running exactly like you said :) I'm using VRaptorhttp://vraptor.caelum.com.br/en and Restfulie (clients: restfulie-objectivechttps://github.com/caelum/restfulie-objectivecor java https://github.com/caelum/restfulie-java) Simple like this: //output json

Re: [appengine-java] json communication with google app engine

2012-01-16 Thread Carter Maslan
We have been happy with our use gson on server side too: of http://code.google.com/p/google-gson/ On Mon, Jan 16, 2012 at 4:44 PM, Bruno Fuster brunofus...@gmail.com wrote: Hi, I have an iphone app running exactly like you said :) I'm using VRaptorhttp://vraptor.caelum.com.br/en and

Re: [appengine-java] json communication with google app engine

2012-01-16 Thread Bruno Fuster
Yep! Gson is great! I'm also using it behind the scenes :D On Mon, Jan 16, 2012 at 10:57 PM, Carter Maslan car...@maslan.com wrote: We have been happy with our use gson on server side too: of http://code.google.com/p/google-gson/ On Mon, Jan 16, 2012 at 4:44 PM, Bruno Fuster