Wednesday, April 24, 2013

Re: Entity not persisted, using JDO,RequestFactory.

What do you mean? There's an error? or your method isn't called but everything goes as if it had?

On Wednesday, April 24, 2013 3:12:51 PM UTC+2, Aman Sharma wrote:
I am trying to persist this http://pastebin.com/7KtXaBGe entity using following piece of code: 

                PollRequest pr = requestFactory.pollRequest();
PollProxy createdPoll = pr.create(PollProxy.class);
createdPoll.setQuestion(view.getQuestion());
createdPoll.setOptions(view.asEditor().getList());
createdPoll.setCloseTime(closeTime);
createdPoll.setUser(Cookies.getCookie("user"));
Request<Void> createReq = pr.persist().using(createdPoll);


           createReq.fire(new Receiver<Void>(){
@Override
public void onSuccess(Void arg0){
view.setMsg("PollCreated");
}
@Override
public void onFailure(ServerFailure error){
Logger logger = Logger.getLogger("PollPersistError");
logger.log(Level.SEVERE,error.getMessage());
}
});
                

But it doesn't get persisted.There are no exceptions. What could be wrong? 

--
You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group.
To unsubscribe from this group and stop receiving emails from it, send an email to google-web-toolkit+unsubscribe@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.
 
 

No comments:

Post a Comment