String username = (String) PropertyUtils.getSimpleProperty(form, "username");
String password = (String) PropertyUtils.getSimpleProperty(form, "password");
SecurityService service = getSecurityService(request);
service.authenticate( username, password);
User user = new User();
user.setUsername(username);
request.getSession().setAttribute("user", user);
return mapping.findForward("success");