Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I've been tinkering with this sample trying to determine if restlet will work with Google app engine to meet my needs. It seems fairly straight forward so far but I've been stuck on something for a couple of hours now and would appreciate some help...

Client code

 ClientResource cr = new ClientResource("my_gae_url");
 ContactResource resource = cr.wrap(ContactResource.class);

This returns a null

 Contact contact = resource.retrieve()

but this returns the expected json string

 String s = cr.get(MediaType.APPLICATION_JSON).getText();

It won't return the object but it will return the json. I don't know if I'm missing a jar or I haven't implemented something or what

 I'm using Google Plugin 3.7 and app engine 1.7.2
 I'm using restlet app engine edition 2.0.15 
 The server includes the following jars org.restlet.jar, org.restlet.ext.gwt.jar,           
 org.restlet.ext.servlet.jar, org.restlet.ext.jackson.jar,
 org.codehaus.jackson.core.jar, org.codehaus.jackson.mapper.jar

If it matters the client i'm using to test things out is jsf with the following jars included

 org.restlet.jar, org.restlet.ext.net.jar
share|improve this question
You need to add Jackson extension on the client side as well – Jerome Louvel Sep 25 '12 at 5:24
The jackson extension did the trick. Thanks a bunch! Now if someone could tell me how to mark a comment as the answer – user1376713 Sep 25 '12 at 6:04
Cool. Reentered comment as answer. – Jerome Louvel Oct 2 '12 at 13:04

1 Answer

up vote 0 down vote accepted

You need to add Jackson extension on the client side as well

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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