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 [email protected].
To post to this group, send email to [email protected].
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.


Reply via email to