You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tomcat.apache.org by na...@apache.org on 2001/08/25 16:19:49 UTC

cvs commit: jakarta-tomcat/src/share/org/apache/tomcat/modules/server Ajp12Interceptor.java Ajp12.java

nacho       01/08/25 07:19:49

  Modified:    src/share/org/apache/tomcat/modules/server
                        Ajp12Interceptor.java Ajp12.java
  Log:
  Bugzilla#3256
  
  tomcatAuthentication="false" does not appear to disable tomcat authentication
  
  Reported by jjv AT windchill.com (Joe Van Demark)
  
  Now TomcatAuthentication defaults to false ( as is was without that hack ) ,
  that is Tomcat relies for basic auth in the HTTPServer used.
  Need to check if TomcatAuthentiication works when the value is true,
  the reporter seems to imply that this not works at all
  
  Revision  Changes    Path
  1.16      +1 -1      jakarta-tomcat/src/share/org/apache/tomcat/modules/server/Ajp12Interceptor.java
  
  Index: Ajp12Interceptor.java
  ===================================================================
  RCS file: /home/cvs/jakarta-tomcat/src/share/org/apache/tomcat/modules/server/Ajp12Interceptor.java,v
  retrieving revision 1.15
  retrieving revision 1.16
  diff -u -r1.15 -r1.16
  --- Ajp12Interceptor.java	2001/08/11 03:21:16	1.15
  +++ Ajp12Interceptor.java	2001/08/25 14:19:49	1.16
  @@ -77,7 +77,7 @@
    */
   public class Ajp12Interceptor extends PoolTcpConnector
       implements  TcpConnectionHandler{
  -    private boolean tomcatAuthentication=true;
  +    private boolean tomcatAuthentication=false;
       String secret;
       File ajpidFile=null;
       
  
  
  
  1.20      +1 -1      jakarta-tomcat/src/share/org/apache/tomcat/modules/server/Ajp12.java
  
  Index: Ajp12.java
  ===================================================================
  RCS file: /home/cvs/jakarta-tomcat/src/share/org/apache/tomcat/modules/server/Ajp12.java,v
  retrieving revision 1.19
  retrieving revision 1.20
  diff -u -r1.19 -r1.20
  --- Ajp12.java	2001/08/22 16:53:57	1.19
  +++ Ajp12.java	2001/08/25 14:19:49	1.20
  @@ -75,7 +75,7 @@
       Socket socket;
       InputStream sin;
       BufferedInputStream ajpin;
  -    private boolean tomcatAuthentication=true;
  +    private boolean tomcatAuthentication=false;
       boolean shutdown=false;
       boolean isPing=false;
       boolean doLog;