public String getMessage(String msg) throws GWTException {
   userDAO.getAllUsers();
   return "Client said: \""
       + msg
       + "\"<br>Server answered: \"Hi!"
       + SecurityContextHolder.getContext().getAuthentication().getName()
       + "\"\n";
 }