Hi Guys,
We have coded to add the users in jetspeed as below
String userName = "Sample", password = "Sample1";
JetspeedUser user =
JetspeedSecurity.getUserInstance();
user.setUserName(JetspeedSecurity.convertUserName(userName));
user.setPassword(password);
System.out.println("Password : "+password);
user.setLastName("lastName");
user.setFirstName("firstName");
user.setEmail("[EMAIL PROTECTED]");
Date now = new Date();
user.setCreateDate(now);
user.setLastLogin(now);
user.setConfirmed(JetspeedResources.CONFIRM_VALUE);
//JetspeedSecurity.addUser(user); tried with this
also but not working
JetspeedUserManagement.addUser(user);
However with this piece of code user "Sample1" is being created in
jetspeed, but the PSML files are not being created for the user. Am i
missing somthing in this code..... ?????
Any help would be much appreciated......
Regards
Deep Kumar
Chief Architect, ComCreation
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]