Fórumok

Fetching organization users on custom portlet

George Rempousis, módosítva 11 év-val korábban

Fetching organization users on custom portlet

New Member Bejegyzések: 7 Csatlakozás dátuma: 2013.01.28. Legújabb bejegyzések
Hi I'm trying to implement a custom portlet and in the proccess I need to get the id's of the users that belongs to an organization.

I use the :
List<User> organizationUsers = UserServiceUtil.getOrganizationUsers(orgID);

method to achieve that.

when I'm logged in, it is working perfectly
but as guest user (unregistered) I get :

com.liferay.portal.security.auth.PrincipalException exception.


Is there any way that I resolve this issue?

Thanks
Oliver Bayer, módosítva 11 év-val korábban

RE: Fetching organization users on custom portlet (Válasz)

Liferay Master Bejegyzések: 894 Csatlakozás dátuma: 2009.02.18. Legújabb bejegyzések
Hi George,

if the current user is not authenticated which you can check by using "themeDisplay.isSignedIn()" you can show sth. else e.g. a warning message that you have to be logged in before using your portlet. Another solution would be to use UserLocalServiceUtil as the ...Local... classes don't have security/ permission checks.

HTH Oli
George Rempousis, módosítva 11 év-val korábban

RE: Fetching organization users on custom portlet

New Member Bejegyzések: 7 Csatlakozás dátuma: 2013.01.28. Legújabb bejegyzések
Thanks Oliver,

worked perfectly

Much appreciated!