Hi,
GWT + GAE 1.6.3 project
I am using UserService as follows
UserService userService = UserServiceFactory.getUserService();
User user = userService.getCurrentUser();
if(user !=null || userService.isUserLoggedIn()) {
return user.getEmail();
}else if(user == null || !userService.isUserLoggedIn()) {
}
It works fine in development mode but in production,
Can someone tell me why it is happening like this ?
Thanks
Deepak Singh