So I am new with restlet. I am creating a Android application that can communicate with a GAE server (with objectify DB) I Did this very good tutorial to learn: http://www.tutos-android.com/webservice-rest-android-appengine-restlet-objectify
It's working very well but do very little. Onely 2 methods:
public interface UserControllerInterface {
@Put
void create(User user);
@Get
Container getAllUsers();
}
For my application its more complicated so I add many more methods:
public interface UserControllerInterface {
@Put
public void createUser(ObagooUser user);
@Put
public void createMessage(ObagooUser user, String message);
@Put
public void updateMessage(ObagooMessage message);
@Get
public List<ObagooUser> getAllUser();
@Get
public ObagooUser getUserById(String id);
@Get
public List<ObagooMessage> getAllMessage();
@Get
public List<ObagooMessage> getAllMessageFromSender(ObagooUser sender);
@Get
public ObagooMessage getFreeMessage(ObagooUser user);
}
Each of these mothds working server side (I tested with Junit).
Now I am coding the android part and I am having problems. When I do a simple call to getAllMessage() I get an error:
java.lang.IllegalArgumentException: id cannot be zero
at com.google.appengine.api.datastore.KeyFactory.createKey(KeyFactory.java:44)
at com.googlecode.objectify.ObjectifyFactory.typedKeyToRawKey(ObjectifyFactory.java:269)
at com.googlecode.objectify.impl.ObjectifyImpl.find(ObjectifyImpl.java:159)
at com.googlecode.objectify.impl.ObjectifyImpl.find(ObjectifyImpl.java:183)
at com.obagoo.dao.ObagooUserDAO.getUserById(ObagooUserDAO.java:43)
at com.obagoo.controller.ObagooController.getUserById(ObagooController.java:47)
It's going in the wrong method (getUserById).
I put a break point in my getAllMessage and it's going in, but it is also going in other methods.
If I test many times, sometimes it's calling, createUser or another random method.
Do you see what I am doind wrong?
Adding the getAllMessage code:
public List<ObagooMessage> getAllMessage() {
// logger.debug("Getting all Obagoo Messages");
List<ObagooMessage> msg = new ArrayList<ObagooMessage>();
Objectify ofy = ObjectifyService.begin();
Query<ObagooMessage> q = ofy.query(ObagooMessage.class);
for (ObagooMessage u : q) {
msg.add(u);
}
return msg;
}
getAllUser(which by the way should be plural.) – km1 Aug 28 '12 at 20:59