Hi Tal,
request.getUser(); is not working for me. I dont find this getUser() method in my request object.
I have done the following and this is working fine with me.
IUser user = UMFactory.getAuthenticator().getLoggedInUser();
String uID = user.getUniqueID();
IUserMaint modUser = null;
IUserFactory ufact = UMFactory.getUserFactory();
modUser = ufact.getMutableUser(uID);
modUser.setLocale(loc);
modUser.commit();
modUser.save();
Thanks for your support.
Visweswar