You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@tomcat.apache.org by Dennis Muhlestein <de...@zserve.com> on 2002/09/24 20:59:14 UTC

getRemoteUser()

I was under the impression that getRemoteUser() was fixed as of 4.1.11. 
I've upgraded to 4.1.12 but still no luck.  It always returns null.  We
use apache/ssl with mod_jk.  

Any suggestions?
Thanks
Dennis



--
To unsubscribe, e-mail:   <ma...@jakarta.apache.org>
For additional commands, e-mail: <ma...@jakarta.apache.org>


Re: getRemoteUser()

Posted by Dennis Muhlestein <de...@zserve.com>.
Just to answer this for anyone else interested.
Yes, the tomcatAuthentication in the older ajp connector worked as well.

All good, thanks for the input.
-Dennis

On Tue, 2002-09-24 at 13:09, Dennis Muhlestein wrote:
> I'm still using the older ajp connector because I haven't had time to
> upgrade the apache side of things.  Does the same apply to that
> connector?  I'll fiddle with it.
> 
> Thanks for the input.
> Dennis
> 
> My xml:
> <Connector className="org.apache.ajp.tomcat4.Ajp13Connector"
>                port="8009" minProcessors="5" maxProcessors="75"
>                acceptCount="10" debug="0"/>
> 
> 
> 
> On Tue, 2002-09-24 at 13:00, Jacob Kjome wrote:
> > Hello Dennis,
> > 
> > Did you add tomcatAuthentication="false" to the Coyote ajp3 connector?
> > 
> > here's what mine looks like:
> > 
> >     <!-- 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
> > 
> > Tuesday, September 24, 2002, 1:59:14 PM, you wrote:
> > 
> > DM> I was under the impression that getRemoteUser() was fixed as of 4.1.11. 
> > DM> I've upgraded to 4.1.12 but still no luck.  It always returns null.  We
> > DM> use apache/ssl with mod_jk.  
> > 
> > DM> Any suggestions?
> > DM> Thanks
> > DM> Dennis
> > 
> > 
> > 
> > DM> --
> > DM> To unsubscribe, e-mail:   <ma...@jakarta.apache.org>
> > DM> For additional commands, e-mail: <ma...@jakarta.apache.org>
> > 
> > 
> > 
> > -- 
> > Best regards,
> >  Jacob                            mailto:hoju@visi.com
> > 
> > 
> > --
> > To unsubscribe, e-mail:   <ma...@jakarta.apache.org>
> > For additional commands, e-mail: <ma...@jakarta.apache.org>
> > 
> 
> 
> --
> To unsubscribe, e-mail:   <ma...@jakarta.apache.org>
> For additional commands, e-mail: <ma...@jakarta.apache.org>
> 


--
To unsubscribe, e-mail:   <ma...@jakarta.apache.org>
For additional commands, e-mail: <ma...@jakarta.apache.org>


Re: getRemoteUser()

Posted by Dennis Muhlestein <de...@zserve.com>.
I'm still using the older ajp connector because I haven't had time to
upgrade the apache side of things.  Does the same apply to that
connector?  I'll fiddle with it.

Thanks for the input.
Dennis

My xml:
<Connector className="org.apache.ajp.tomcat4.Ajp13Connector"
               port="8009" minProcessors="5" maxProcessors="75"
               acceptCount="10" debug="0"/>



On Tue, 2002-09-24 at 13:00, Jacob Kjome wrote:
> Hello Dennis,
> 
> Did you add tomcatAuthentication="false" to the Coyote ajp3 connector?
> 
> here's what mine looks like:
> 
>     <!-- 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
> 
> Tuesday, September 24, 2002, 1:59:14 PM, you wrote:
> 
> DM> I was under the impression that getRemoteUser() was fixed as of 4.1.11. 
> DM> I've upgraded to 4.1.12 but still no luck.  It always returns null.  We
> DM> use apache/ssl with mod_jk.  
> 
> DM> Any suggestions?
> DM> Thanks
> DM> Dennis
> 
> 
> 
> DM> --
> DM> To unsubscribe, e-mail:   <ma...@jakarta.apache.org>
> DM> For additional commands, e-mail: <ma...@jakarta.apache.org>
> 
> 
> 
> -- 
> Best regards,
>  Jacob                            mailto:hoju@visi.com
> 
> 
> --
> To unsubscribe, e-mail:   <ma...@jakarta.apache.org>
> For additional commands, e-mail: <ma...@jakarta.apache.org>
> 


--
To unsubscribe, e-mail:   <ma...@jakarta.apache.org>
For additional commands, e-mail: <ma...@jakarta.apache.org>


Re: getRemoteUser()

Posted by Jacob Kjome <ho...@visi.com>.
Hello Dennis,

Did you add tomcatAuthentication="false" to the Coyote ajp3 connector?

here's what mine looks like:

    <!-- 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

Tuesday, September 24, 2002, 1:59:14 PM, you wrote:

DM> I was under the impression that getRemoteUser() was fixed as of 4.1.11. 
DM> I've upgraded to 4.1.12 but still no luck.  It always returns null.  We
DM> use apache/ssl with mod_jk.  

DM> Any suggestions?
DM> Thanks
DM> Dennis



DM> --
DM> To unsubscribe, e-mail:   <ma...@jakarta.apache.org>
DM> For additional commands, e-mail: <ma...@jakarta.apache.org>



-- 
Best regards,
 Jacob                            mailto:hoju@visi.com


--
To unsubscribe, e-mail:   <ma...@jakarta.apache.org>
For additional commands, e-mail: <ma...@jakarta.apache.org>