Re: Customizing login module

2008-05-14 Thread Bon
e a portal-user account without a portlet and how to do? Best Regards, Bon -- View this message in context: http://www.nabble.com/Customizing-login-module-tp2863029p17244802.html Sent from the Jetspeed - User mailing list archive at Nabble.com. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Customizing login module

2008-05-14 Thread David Sean Taylor
On May 5, 2008, at 9:11 PM, Bon wrote: Hello list, Now, I have a work that like Mu Baosen's question, and our idea just like Mu Baosen's thinking, and I'm finding out the way to do it. Does it possible? or there has another way to do not in the login module? maybe I could be differ

Re: Customizing login module

2008-05-05 Thread Bon
e for this function. When my old web application logging in, > the > login module create the same user with the old web application user. > > -- View this message in context: http://www.nabble.com/Customizing-login-module-tp2863029p17071566.h

Re: Customizing login module

2006-02-11 Thread mu baosen
Aaron, Thanks.I have another web application which uses difference user table with jetspeed 2. I want to do that jetspeed would login automatically when the old web application logged in.So I think if jetspeed 2 create each of the user in my old web application's user table automatically, then jet

Re: Customizing login module

2006-02-10 Thread Aaron Evans
mu baosen gmail.com> writes: > > Hello everyone. > > I want to implement a login module . in the login module, I want to > implement the following functions: > > 1. If the user does not exist, create a new user. > 2. If the password is incorrect, change the user's password to the new > passwor

Re: Customizing login module

2006-02-10 Thread Aaron Evans
Jacek Wiślicki gmail.com> writes: > > Wiadomosc od mu baosen z 2006-02-10 03:20 brzmiala: > > > How to get the current password of a user? > Passwords are MD5 hashes with user login name. You can verify passwords, > but not retrieve them. > True, but you can always swap the PortalCredential

Re: Customizing login module

2006-02-10 Thread Jacek Wiślicki
Wiadomosc od mu baosen z 2006-02-10 03:20 brzmiala: How to get the current password of a user? Passwords are MD5 hashes with user login name. You can verify passwords, but not retrieve them. -- pozdrawiam, Jacek Wislicki [EMAIL PROTECTED] tel.: +48 502 408 444 gg: 2540358 skype: jacek_wi

Re: Customizing login module

2006-02-09 Thread mu baosen
> > Thanks for replying. How to call getPortletContext() in login module?

Re: Customizing login module

2006-02-09 Thread Pham Tuan Minh
Mu Baosen, 1) CODE: admin = (PortalAdministration) getPortletContext().getAttribute( CommonPortletServices.CPS_PORTAL_ADMINISTRATION); userManager = (UserManager) getPortletContext().getAttribute( "cps:UserManager"); roleManager = (PortalAdministration) getPortletCo

Re: Customizing login module

2006-02-09 Thread mu baosen
I have read the source of UserRegistrationPortlet and ChangePasswordPortlet. How to get the current password of a user? How to get the PortalAdministration or UserManager and RoleManager instance in login module? Thanks

Customizing login module

2006-02-09 Thread mu baosen
Hello everyone. I want to implement a login module . in the login module, I want to implement the following functions: 1. If the user does not exist, create a new user. 2. If the password is incorrect, change the user's password to the new password which just input. How to create new user and ch