RE: Adding another protocol

2001-08-21 Thread mettu . kumar
Kelvin, I would just use Craig Russell's(Spec lead, JDO) words" "Why make them if you have to apologize for them? Perhaps you could just have exercised your del key..." Thanks for the advice though :-) Kumar. -Original Message- From: Kevin Seguin [mailto:[EMAIL PROTECTED]] Sen

RE: Adding another protocol

2001-08-21 Thread mettu . kumar
Craig, Can you point to some reference (or additional some information ) if I want to Implement a HTTP Extension on tomcat4. Thanks In Advance, Kumar. -Original Message- From: Craig R. McClanahan [mailto:[EMAIL PROTECTED]] Sent: Tuesday, August 21, 2001 9:02 AM To: [EMAIL

RE: [ANNOUNCEMENT] Tomcat 4.0-beta-7 Released

2001-08-20 Thread mettu . kumar
Criag, PFD3? Only PFD2 is accessable from Sun web site. Aslo Suns web site says "Tomcat 4.0-beta-7" supports PFD2. http://java.sun.com/products/servlet/download.html Kumar. -Original Message- From: Craig R. McClanahan [mailto:[EMAIL PROTECTED]] Sent: Thursday, August 09, 2001 11:02

RE: Tomcat 4 installer - testers needed

2001-07-15 Thread mettu . kumar
Remy, Probably we shoudln't be appending c:\ to JAVA_HOME if JAVA_HOME is not set(So that it works fine after JAVA_HOME is properly set). Kumar. -Original Message- From: Remy Maucherat [mailto:[EMAIL PROTECTED]] Sent: Saturday, July 14, 2001 11:24 PM To: [EMAIL PROTECTED] Subj

RE: Tomcat 4 installer - testers needed

2001-07-14 Thread mettu . kumar
Remy, I tried the Installation both win2K and win98. They did work pretty well. The only problem I noticed is that when JAVA_HOME is not set before installation some how "start Tomcat" Menu Item items Target is set to something like "C:\%JAVA_HOME%\bin\java -cp " This only happens if

setAttribute

2001-07-09 Thread mettu . kumar
  I am looking at setAttribute implementation of Standard Session. Tomcat seems to be differing from what spec says. Is this intentional?     As per spec:       Both name and value of setAttribute should be not null. I assumed when either of parameters is null servlet container throws Ille

RE: Question on HTTPConnector.

2001-07-08 Thread mettu . kumar
Deacon, As I mentioned in my ealier mail, setting maxProcessors to -ve values doesn't really mean unlimited max processors as there is not code to do the same(Though comments in the code says -ve value indicates unlimited). kumar. -Original Message- From: Deacon Marcus [mail

RE: Question on HTTPConnector.

2001-07-07 Thread mettu . kumar
Craig, Thanks for clarification. I do agree with you given the three options the one choosen by tomcat group is the best one(Option one). But there need to be an option for tomcat users to use option 3 in case where DOS issues are solved by some other means (ex: using a switch w

RE: Question on HTTPConnector.

2001-07-07 Thread mettu . kumar
Donald, I believe this is logged. See the following lines of code: if (processor == null) { try { log(sm.getString("httpConnector.noProcessor")); socket.close(); } catch (IOException e) {

Question on HTTPConnector.

2001-07-07 Thread mettu . kumar
Looking at org.apache.catalina.connector.http.HTTPConnector I got a question regarding the way its implemented.(I am looking at 4.0b3 src) Look at this block of code(in run method of HTTPConnector): // Hand this socket off to an appropriate processor HttpProcessor proce