DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG 
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://nagoya.apache.org/bugzilla/show_bug.cgi?id=12196>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND 
INSERTED IN THE BUG DATABASE.

http://nagoya.apache.org/bugzilla/show_bug.cgi?id=12196

request.getRemoteUser() returns null for AJP request with remote username

[EMAIL PROTECTED] changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Severity|Major                       |Critical



------- Additional Comments From [EMAIL PROTECTED]  2002-09-06 17:40 -------
I've tried using the normal mod_jk (not mod_jk2) and haven't been able to find a
way to set tomcatAuthentication="false" on the Coyote connector.  Until the
Coyote connector allows me to do this, I have to continue to use the old ajp13
connector in order to get a non-null value calling getRemoteUser() when using
BASIC Authentication fronting Tomcat with Apache.  But the problem with that is
that I end up disabling any of the JMX management functions when configuring the
server with the admin app because JMX barfs when the old ajp13 connector is
specified even if I go straight to Tomcat through port 8080. it requires the
Coyote connector to be specified instead.

I would really like to be able to do both and fixing this bug is the answer.  I
am raising the priority on this especially since it seems that a stable release
(Tomcat-4.1.10) has been cut which has this bug.

Here is what I have to use:

<!-- Define an AJP 1.3 Connector on port 8009 -->
<Connector className="org.apache.ajp.tomcat4.Ajp13Connector"
           port="8009" minProcessors="5" maxProcessors="75"
           acceptCount="10" debug="0" tomcatAuthentication="false"/>

Here is what I'd like to use:

<!-- Define a Coyote/JK2 AJP 1.3 Connector on port 8009 -->
<Connector className="org.apache.coyote.tomcat4.CoyoteConnector"
           port="8009" minProcessors="5" maxProcessors="75"
           enableLookups="true" redirectPort="8443"
           acceptCount="10" debug="0" connectionTimeout="20000"
           useURIValidationHack="false" tomcatAuthentication="false"
           protocolHandlerClassName="org.apache.jk.server.JkCoyoteHandler"/>

Jake

--
To unsubscribe, e-mail:   <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

Reply via email to