I'm running Tomcat 5.5.9 connected to IIS 5.1 with the isapi_redirect.dll using AJP/1.3. I am trying to enable Integrated Windows Authentication in IIS and have Tomcat access the username of the remote user.
I've tried: ---server.xml--- <Connector port="8009" tomcatAuthentication="false" enableLookups="false" redirectPort="8443" protocol="AJP/1.3" /> and: ---server.xml--- <Connector port="8009" request.tomcatAuthentication="false" enableLookups="false" redirectPort="8443" protocol="AJP/1.3" /> and: ---server.xml--- <Connector port="8009" propertiesFile="conf/jk2.properties" enableLookups="false" redirectPort="8443" protocol="AJP/1.3" /> ---jk2.properties--- request.tomcatAuthentication=false I've tried accessing the username in JSP/JSTL with the following: <% out.println(request.getRemoteUser()); %> <c:out value="${pageContext.request['remoteUser']}"/> In all cases, the value has been empty. I have verified NTLM is working through ASP and by checking for the authorization: NTLM header in JSP. I tried to parse the NTLM header, but the username is not passed in. I've been searching the web and group, but can't find what I'm missing. Mike --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]