Howdy, y'all I'm working on porting a pure java CGI to a servlet. I'm using Tomcat 6 behind Apache HTTPD 2.2.
At this point, I have everything talking to each other fine. When I hit the right URL on httpd, my servlet gets run. yay. My question: incoming connections to httpd are over SSL. For the CGI, apache sets user-identifying information in the environment, so that I can read a particular environment variable and uniquely identify the user making the request. So far, I can't figure out how to uniquely identify the user from the Tomcat side. All of the obvious methods (like #getRemoteUser()) from HttpServletRequest return null. I see "JkEnvVar" at http://tomcat.apache.org/connectors-doc/webserver_howto/apache.html, but either that only copies variables from Apache's environment (rather than ones that it sets for CGI), or I'm not using it correctly. Lastly, I'm not hitting Tomcat SSL directly because I depend on a module that only exists for Apache HTTPD. Thanks, --xsdg --------------------------------------------------------------------- To unsubscribe, e-mail: users-unsubscr...@tomcat.apache.org For additional commands, e-mail: users-h...@tomcat.apache.org