I am creating a custom Java servlet inside of Maximo. I want to piggyback off of Maximo's authentication and as a part of that I need some way of retrieving the user info (user name, display name, etc.) from the HttpServletRequest
object. I am able to access the JSESSIONID
from the request cookies (which as I understand it is how Maximo/WebSphere keeps track of your user session), but I have not been able to find a way to use that to retrieve the UserInfo
object.
I have scoured the Javadocs trying to figure something out but have had no luck. It seems like Java customizations in Maximo are pretty rare nowadays so there are not many resources to figure this one out.