RE: What is the Container implementation for HttpConnector

2002-06-14 Thread Anand Bashyam Narasimhan
Chadra, It's in the org.apache.catalina.startup.Catalina class in the createStartMapper method. The various element types like Service,Engine,Connector,Valves etc are defined in this method. The various XML parsing handlers are also called indirectly based on the definitions here as follows:-

RE: Small help

2002-06-12 Thread Anand Bashyam Narasimhan
Isn't the Java Groups JAR available as a separate JAR at www.javagroups.org Put the JAR in your tomcat/common/lib and try it out. Anand -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Wednesday, June 12, 2002 5:31 PM To: [EMAIL PROTECTED] Subject: Small help

RE: Connection aborted by peer: socket write error

2002-06-11 Thread Anand Bashyam Narasimhan
Typically the error that you are getting on the server side connection reset by peer happens when a connection to the servlet is open and while the request is being processed the stream to which the response is written back is closed abruptly. You can easily replicate this with a simple servlet,

HttpProcessor working

2002-05-29 Thread Anand Bashyam Narasimhan
All, This is my current understanding of the HttpProcessor object. The Connector creates a new HttpProcessor(or pops from the stack the first available Processor) and then Processor runs as a different thread. Consider that I make a HttpURLConnection to a servlet running on Tomcat4. And after

RE: ResultSet

2002-05-29 Thread Anand Bashyam Narasimhan
Manuel, For you to be able to invoke the clone() method on an Object does'nt it have to implement Cloneable interface. That's the reason why to are getting a compile time error. If JDK is not a constraint you can switch to 1.2 or 1.3.x and use CachedRowSet which allow you to have

Patterns in tOmcat 4 design

2002-05-18 Thread Anand Bashyam Narasimhan
All, Knowing the popularity of Tomcat and the stability of the system I'm sure a lot of thought on design must have gone into this great peice of Java software. I'm interesting in the various design strategies, Patterns that have been used in the process of developing Catalina. It would server a