cvs commit: jakarta-tomcat-connectors/jk/java/org/apache/ajp/tomcat33 Ajp14Interceptor.java

2003-10-16 Thread hgomez
hgomez 2003/10/16 00:37:32 Modified:jk/java/org/apache/jk/common HandlerRequest.java jk/java/org/apache/ajp Ajp13.java RequestHandler.java jk/java/org/apache/ajp/tomcat33 Ajp14Interceptor.java Log: My latest patches to jk/ajp broke the AJP14 logon phase

cvs commit: jakarta-tomcat-connectors/jk/java/org/apache/ajp/tomcat33 Ajp14Interceptor.java

2002-04-20 Thread billbarker
billbarker02/04/20 22:51:20 Modified:jk/java/org/apache/ajp/tomcat33 Ajp14Interceptor.java Log: Removing the get/setAttribute overloads. Revision ChangesPath 1.10 +20 -15 jakarta-tomcat-connectors/jk/java/org/apache/ajp/tomcat33/Ajp14Interceptor.java Index:

cvs commit: jakarta-tomcat-connectors/jk/java/org/apache/ajp/tomcat33 Ajp14Interceptor.java

2001-11-26 Thread costin
costin 01/11/26 08:59:54 Modified:jk/java/org/apache/ajp/tomcat33 Ajp14Interceptor.java Log: Now ajp14 is implemented by creating a NegotiationHandler and registering it, and setting Ajp13 in 'require auth' mode. For all new callbacks we'll create a specific FooHandler that

cvs commit: jakarta-tomcat-connectors/jk/java/org/apache/ajp/tomcat33 Ajp14Interceptor.java

2001-11-21 Thread costin
costin 01/11/21 12:49:55 Modified:jk/java/org/apache/ajp Ajp13.java Ajp14.java AjpHandler.java NegociationHandler.java RequestHandler.java jk/java/org/apache/ajp/test TestAjp13.java jk/java/org/apache/ajp/tomcat33 Ajp14Interceptor.j

cvs commit: jakarta-tomcat-connectors/jk/java/org/apache/ajp/tomcat33 Ajp14Interceptor.java

2001-06-27 Thread costin
costin 01/06/27 08:55:29 Modified:jk/java/org/apache/ajp/tomcat33 Ajp14Interceptor.java Log: Few ( temporary ) fixes to keep it working, until the API is finalized. ( the most important part is buffer management, we want to reuse buffers to keep memory low, but probably we shou

cvs commit: jakarta-tomcat-connectors/jk/java/org/apache/ajp/tomcat33 Ajp14Interceptor.java

2001-06-26 Thread costin
costin 01/06/26 12:52:26 Modified:jk/java/org/apache/ajp Ajp14.java Ajp14Packet.java jk/java/org/apache/ajp/tomcat33 Ajp14Interceptor.java Log: Merged ( copied ) the code from Ajp13 into Ajp14, removed "extend Ajp13". The main reason is that we need to keep Ajp1

Re: cvs commit: jakarta-tomcat-connectors/jk/java/org/apache/ajp/tomcat33 Ajp14Interceptor.java

2001-06-24 Thread cmanolache
On Sun, 24 Jun 2001, kevin seguin wrote: > i've been thinking about this, and, well, isn't this BaseRequest you're > talking about kind of what org.apache.coyote.Request is? does it make > sense to have two of these kinds of objects hanging around? is > o.a.c.Request roughly equivalent to core.

Re: cvs commit: jakarta-tomcat-connectors/jk/java/org/apache/ajp/tomcat33 Ajp14Interceptor.java

2001-06-24 Thread kevin seguin
> > I think we should move AjpRequest to o.a.tomcat.util.http.BaseRequest, > and have o.a.t.core.Request extend it. > > ( the util.http package contains low-level utils. The BaseRequest will > have the base fields for a http request, with various protocols > setting them. The core.Requ

Re: cvs commit: jakarta-tomcat-connectors/jk/java/org/apache/ajp/tomcat33 Ajp14Interceptor.java

2001-06-24 Thread cmanolache
On Sun, 24 Jun 2001, kevin seguin wrote: > hey costin, one of the things i've been planning on doing is changing > o.a.ajp.AjpRequest to make use of o.a.coyote.Request. basically, wrap > Request in AjpRequest. does this conflict with your plans? Yes, a bit, as I'm going to wrap AjpRequest in

cvs commit: jakarta-tomcat-connectors/jk/java/org/apache/ajp/tomcat33 Ajp14Interceptor.java

2001-06-24 Thread costin
costin 01/06/24 15:29:02 Modified:jk/java/org/apache/ajp AjpRequest.java jk/java/org/apache/ajp/tomcat33 Ajp14Interceptor.java Log: Started to implement the adapter. I think we should move AjpRequest to o.a.tomcat.util.http.BaseRequest, and have o.a.t.core.Req

Re: cvs commit: jakarta-tomcat-connectors/jk/java/org/apache/ajp/tomcat33 Ajp14Interceptor.java

2001-06-24 Thread kevin seguin
kevin seguin wrote: > > [EMAIL PROTECTED] wrote: > > > > costin 01/06/24 14:17:13 > > > > Modified:jk/java/org/apache/ajp/tomcat33 Ajp14Interceptor.java > > Log: > > Fixes for the code move. > > > > One big missing chunk is the adapter between o.a.ajp.AjpRequest and > > tomcat3

Re: cvs commit: jakarta-tomcat-connectors/jk/java/org/apache/ajp/tomcat33 Ajp14Interceptor.java

2001-06-24 Thread kevin seguin
[EMAIL PROTECTED] wrote: > > costin 01/06/24 14:17:13 > > Modified:jk/java/org/apache/ajp/tomcat33 Ajp14Interceptor.java > Log: > Fixes for the code move. > > One big missing chunk is the adapter between o.a.ajp.AjpRequest and > tomcat33 request ( similar with the one for tom

cvs commit: jakarta-tomcat-connectors/jk/java/org/apache/ajp/tomcat33 Ajp14Interceptor.java

2001-06-24 Thread costin
costin 01/06/24 14:17:13 Modified:jk/java/org/apache/ajp/tomcat33 Ajp14Interceptor.java Log: Fixes for the code move. One big missing chunk is the adapter between o.a.ajp.AjpRequest and tomcat33 request ( similar with the one for tomcat4 ). I'm working on this. Revisi