掲示板

Fetching organization users on custom portlet

11年前 に George Rempousis によって更新されました。

Fetching organization users on custom portlet

New Member 投稿: 7 参加年月日: 13/01/28 最新の投稿
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
11年前 に Oliver Bayer によって更新されました。

RE: Fetching organization users on custom portlet (回答)

Liferay Master 投稿: 894 参加年月日: 09/02/18 最新の投稿
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
11年前 に George Rempousis によって更新されました。

RE: Fetching organization users on custom portlet

New Member 投稿: 7 参加年月日: 13/01/28 最新の投稿
Thanks Oliver,

worked perfectly

Much appreciated!