aspose file tools
The moose likes Servlets and the fly likes How to get HTTP Session username? Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login


JavaRanch » Java Forums » Java » Servlets
Reply Bookmark "How to get HTTP Session username?" Watch "How to get HTTP Session username?" New topic
Author

How to get HTTP Session username?

Philippe Desrosiers
Ranch Hand

Joined: Mar 29, 2006
Posts: 138
I'm using FORM authentication under Tomcat 5. Everything works fine, but I'm trying to get the name of the logged in user, as it's stored in the session authentication. Is there a Principal, or Identity instance I can grab from the session in order to display the currently logged in user?
Ulf Dittmer
Marshal

Joined: Mar 22, 2005
Posts: 35443
    
    9
HttpServletRequest has the getUserPrincipal and getRemoteUser methods, which return this information.


Android appsImageJ pluginsJava web charts
Philippe Desrosiers
Ranch Hand

Joined: Mar 29, 2006
Posts: 138
Perfect! Thanks a bunch!
 
I agree. Here's the link: http://zeroturnaround.com/jrebel - it saves me about five hours per week
 
subject: How to get HTTP Session username?
 
Similar Threads
Weblogic Session Issue
Checking for Session Timeout
How to prevent multiple logins
Query regarding Session Tracking
Logoff button - what to do?