I am trying to fetch user info in my portlet (JSR 286 portlet deployed in JBoss GateIn) like

     Map userInfo = (Map) request.getAttribute(PortletRequest.USER_INFO);

but I get nothing back. My portlet.xml has following params:

     <user-attribute>
    <description>User Name</description>
    <name>user.name</name>
</user-attribute>
<user-attribute>
    <description>User Id</description>
    <name>user.id</name>
</user-attribute>

GateIn provides PortalRequestContext which gives getRemoteUser() method to get logged in user's id. This id can then be used by OrganizationService to get User but thats all GateIn specific and not as per JSR286 standard. JSR 286 states that user related attributes can be fetched from PortletRequest.USER_INFO as mentioned above. Please guide.

Thanks in advance!

Ps: Similar post on JBoss community http://community.jboss.org/message/425683#425683

link|improve this question
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.