I've successfully configured mod_proxy_ajp from my httpd to Tomcat, with httpd performing the SSL and basic authentication. I need the remote user in my tomcat application, so I thought using AJP would population the headers so HttpServletRequest.getRemoteUser() would give me the username, but it is 'null'. However HttpServletRequest.getRemoteHost() is populated correctly.
What do I need to do to get the remote user from httpd basic authentication in my tomcat servlet?