You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tomcat.apache.org by co...@apache.org on 2003/05/03 03:05:56 UTC

cvs commit: jakarta-tomcat-connectors/coyote/src/java/org/apache/coyote/tomcat4 CoyoteConnector.java

costin      2003/05/02 18:05:56

  Modified:    coyote/src/java/org/apache/coyote/tomcat4
                        CoyoteConnector.java
  Log:
  Backport - pass tomcatAuthentication.
  
  Revision  Changes    Path
  1.26      +16 -4     jakarta-tomcat-connectors/coyote/src/java/org/apache/coyote/tomcat4/CoyoteConnector.java
  
  Index: CoyoteConnector.java
  ===================================================================
  RCS file: /home/cvs/jakarta-tomcat-connectors/coyote/src/java/org/apache/coyote/tomcat4/CoyoteConnector.java,v
  retrieving revision 1.25
  retrieving revision 1.26
  diff -u -r1.25 -r1.26
  --- CoyoteConnector.java	28 Apr 2003 17:08:25 -0000	1.25
  +++ CoyoteConnector.java	3 May 2003 01:05:56 -0000	1.26
  @@ -264,6 +264,9 @@
        */
       private boolean secure = false;
   
  +    /** For jk, do tomcat authentication if true, trust server if false 
  +     */ 
  +    private boolean tomcatAuthentication = true;
   
       /**
        * The string manager for this package.
  @@ -914,6 +917,13 @@
   
       }
   
  +    public boolean getTomcatAuthentication() {
  +        return tomcatAuthentication;
  +    }
  +
  +    public void setTomcatAuthentication(boolean tomcatAuthentication) {
  +        this.tomcatAuthentication = tomcatAuthentication;
  +    }
   
       /**
        * Return the TCP no delay flag value.
  @@ -1117,6 +1127,8 @@
                                          "" + disableUploadTimeout);
           IntrospectionUtils.setProperty(protocolHandler, "maxKeepAliveRequests",
                                          "" + maxKeepAliveRequests);
  +        IntrospectionUtils.setProperty(protocolHandler, "tomcatAuthentication",
  +                                       "" + tomcatAuthentication);
           IntrospectionUtils.setProperty(protocolHandler, "compression",
                                          compression);
           if (address != null) {
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: tomcat-dev-unsubscribe@jakarta.apache.org
For additional commands, e-mail: tomcat-dev-help@jakarta.apache.org


Re: cvs commit: jakarta-tomcat-connectors/coyote/src/java/org/apache/coyote/tomcat4 CoyoteConnector.java

Posted by Costin Manolache <cm...@yahoo.com>.
Costin Manolache wrote:

> Remy Maucherat wrote:
> 
>> Costin Manolache wrote:
>>> Remy Maucherat wrote:
>>> 
>>> 
>>>>costin@apache.org wrote:
>>>>
>>>>>costin      2003/05/02 18:05:56
>>>>>
>>>>>  Modified:    coyote/src/java/org/apache/coyote/tomcat4
>>>>>                        CoyoteConnector.java
>>>>>  Log:
>>>>>  Backport - pass tomcatAuthentication.
>>>>
>>>>Tomcat 4.1.x uses the coyote_10 branch, not the HEAD.
>>> 
>>> 
>>> I'm trying to get the HEAD working with tomcat4.1.x ( and 3.3 ).
>>> 
>>> I can backport this to the coyote_10 branch too - do we plan
>>> any release out of that branch ?
>> 
>> You want to switch to HEAD for future 4.1.x releases ?

BTW, commons-modeler1.1 should be used instead of 1.0 in any case - there
are a lot of fixes.

Same for logging 1.0.3.


Costin

> 
> What I want is to build HEAD against tomcat4.1.24 / tomcat-3.3.1a -
> it also works with tomcat4.0 and all versions of 4.1.x that I tried ( 18,
> 12).
> 
> I don't particulary care what is used in 3.3 or 4.0 or 4.1.x releases, as
> long as j-t-c HEAD can be used as a replacement :-)
> 
> Do we have any plan for a 4.1.x release ? I assume we'll get a j-t-c
> standalone release and a 5.0 release before the next 4.1.x update, and we
> can decide then.
> 
> 
> Costin



---------------------------------------------------------------------
To unsubscribe, e-mail: tomcat-dev-unsubscribe@jakarta.apache.org
For additional commands, e-mail: tomcat-dev-help@jakarta.apache.org


Re: cvs commit: jakarta-tomcat-connectors/coyote/src/java/org/apache/coyote/tomcat4 CoyoteConnector.java

Posted by Costin Manolache <cm...@yahoo.com>.
Remy Maucherat wrote:

> Costin Manolache wrote:
>> Remy Maucherat wrote:
>> 
>> 
>>>costin@apache.org wrote:
>>>
>>>>costin      2003/05/02 18:05:56
>>>>
>>>>  Modified:    coyote/src/java/org/apache/coyote/tomcat4
>>>>                        CoyoteConnector.java
>>>>  Log:
>>>>  Backport - pass tomcatAuthentication.
>>>
>>>Tomcat 4.1.x uses the coyote_10 branch, not the HEAD.
>> 
>> 
>> I'm trying to get the HEAD working with tomcat4.1.x ( and 3.3 ).
>> 
>> I can backport this to the coyote_10 branch too - do we plan
>> any release out of that branch ?
> 
> You want to switch to HEAD for future 4.1.x releases ?

What I want is to build HEAD against tomcat4.1.24 / tomcat-3.3.1a - 
it also works with tomcat4.0 and all versions of 4.1.x that I tried ( 18,
12).

I don't particulary care what is used in 3.3 or 4.0 or 4.1.x releases, as
long as j-t-c HEAD can be used as a replacement :-)

Do we have any plan for a 4.1.x release ? I assume we'll get a j-t-c
standalone release and a 5.0 release before the next 4.1.x update, and we
can decide then.


Costin


---------------------------------------------------------------------
To unsubscribe, e-mail: tomcat-dev-unsubscribe@jakarta.apache.org
For additional commands, e-mail: tomcat-dev-help@jakarta.apache.org


Re: cvs commit: jakarta-tomcat-connectors/coyote/src/java/org/apache/coyote/tomcat4 CoyoteConnector.java

Posted by Remy Maucherat <re...@apache.org>.
Costin Manolache wrote:
> Remy Maucherat wrote:
> 
> 
>>costin@apache.org wrote:
>>
>>>costin      2003/05/02 18:05:56
>>>
>>>  Modified:    coyote/src/java/org/apache/coyote/tomcat4
>>>                        CoyoteConnector.java
>>>  Log:
>>>  Backport - pass tomcatAuthentication.
>>
>>Tomcat 4.1.x uses the coyote_10 branch, not the HEAD.
> 
> 
> I'm trying to get the HEAD working with tomcat4.1.x ( and 3.3 ).
> 
> I can backport this to the coyote_10 branch too - do we plan 
> any release out of that branch ? 

You want to switch to HEAD for future 4.1.x releases ?

Remy


---------------------------------------------------------------------
To unsubscribe, e-mail: tomcat-dev-unsubscribe@jakarta.apache.org
For additional commands, e-mail: tomcat-dev-help@jakarta.apache.org


Re: cvs commit: jakarta-tomcat-connectors/coyote/src/java/org/apache/coyote/tomcat4 CoyoteConnector.java

Posted by Costin Manolache <cm...@yahoo.com>.
Remy Maucherat wrote:

> costin@apache.org wrote:
>> costin      2003/05/02 18:05:56
>> 
>>   Modified:    coyote/src/java/org/apache/coyote/tomcat4
>>                         CoyoteConnector.java
>>   Log:
>>   Backport - pass tomcatAuthentication.
> 
> Tomcat 4.1.x uses the coyote_10 branch, not the HEAD.

I'm trying to get the HEAD working with tomcat4.1.x ( and 3.3 ).

I can backport this to the coyote_10 branch too - do we plan 
any release out of that branch ? 

Costin


---------------------------------------------------------------------
To unsubscribe, e-mail: tomcat-dev-unsubscribe@jakarta.apache.org
For additional commands, e-mail: tomcat-dev-help@jakarta.apache.org


Re: cvs commit: jakarta-tomcat-connectors/coyote/src/java/org/apache/coyote/tomcat4 CoyoteConnector.java

Posted by Remy Maucherat <re...@apache.org>.
costin@apache.org wrote:
> costin      2003/05/02 18:05:56
> 
>   Modified:    coyote/src/java/org/apache/coyote/tomcat4
>                         CoyoteConnector.java
>   Log:
>   Backport - pass tomcatAuthentication.

Tomcat 4.1.x uses the coyote_10 branch, not the HEAD.

Remy


---------------------------------------------------------------------
To unsubscribe, e-mail: tomcat-dev-unsubscribe@jakarta.apache.org
For additional commands, e-mail: tomcat-dev-help@jakarta.apache.org