RE: [jakarta-tomcat-connectors] a dilemma ...

2001-05-17 Thread GOMEZ Henri
The problem is not only the Request object, but the whole infrastructure needed for efficient communication ( MessageBytes, Headers, etc ). i've started down this path (1). there's a bunch of stuff in tomcat 3 (like MessageBytes) that would be useful... i posted a message a couple days

Re: [jakarta-tomcat-connectors] a dilemma ...

2001-05-17 Thread kevin seguin
i actually decided to copy a bunch of low-level utility classes from tc 3 to jtc/util until something like a jakarta-tomcat-commons exists... GOMEZ Henri wrote: The problem is not only the Request object, but the whole infrastructure needed for efficient communication ( MessageBytes,

RE: [jakarta-tomcat-connectors] a dilemma ...

2001-05-15 Thread GOMEZ Henri
so, i'm looking at decoupling the Ajp13 java stuff from servlet container code. some background... in tomcat 3, the ajp code takes a core tomcat Request object and adds decoded information from the ajp request into the Request object. when i ported this code from tomcat 3 to tomcat 4, i used

Re: [jakarta-tomcat-connectors] a dilemma ...

2001-05-15 Thread cmanolache
On Mon, 14 May 2001, kevin seguin wrote: so, i'm looking at decoupling the Ajp13 java stuff from servlet container code. some background... in tomcat 3, the ajp code takes a core tomcat Request object and adds decoded information from the ajp request into the Request object. when i

Re: [jakarta-tomcat-connectors] a dilemma ...

2001-05-15 Thread kevin seguin
the dilemma is what to pass to the ajp code that accepts requests in the new world where this code could be used by any servlet container. the choices as i see them are: 1) a concrete object (say AjpRequest) that takes and stores information from the request 2) an interface that

[jakarta-tomcat-connectors] a dilemma ...

2001-05-14 Thread kevin seguin
so, i'm looking at decoupling the Ajp13 java stuff from servlet container code. some background... in tomcat 3, the ajp code takes a core tomcat Request object and adds decoded information from the ajp request into the Request object. when i ported this code from tomcat 3 to tomcat 4, i used