problem about the path of servlet

2000-12-05 Thread Haizheng Zhang
Hi, i am new comer to tomcat world. Now I meet a problem. After I config and start the tomcat, when I execute the servlet examples. It doesn't work. I check the log files, and it reads can't find the class. But the class files is right in the web-inf/classes directory, And I tried snoop, it does

cvs commit: jakarta-tomcat-4.0/catalina/src/share/org/apache/catalina/connector/http HttpRequestStream.java

2000-12-05 Thread remm
remm00/12/05 22:46:39 Modified:catalina/src/share/org/apache/catalina/connector/http HttpRequestStream.java Log: - Fix a chunking parsing bug on input. Basically, the hexadecimal number may have some extra spaces, which would make the conversion to an

Re: multiple cookies, PR 371, any news?

2000-12-05 Thread cmanolache
Hi Dan, I think you'll be able to commit the patch yourself very soon. I just have few comments - it's a good patch ( as it solves the problem), but it's not good for performance. We definitely need to do a refactoring of MimeHeaders :-) The idea behind MimeHeaders is to allow efficient stor

Re: Class loading & classloader visibility test results

2000-12-05 Thread Rob Shaw
Aron, Based on the stack trace alone it's difficult to debug the problem. If you want everything to be self contained within your context, then the first thing I would ensure is that every class required by your servlet is contained with the classes or lib directory of your context. Also, since

Re: multiple cookies, PR 371, any news?

2000-12-05 Thread Dan Milstein
I thought I'd test out my new status as the resident Ajp13 expert by fixing this bug, and I think I've got it. I'm attaching patches to util/MimeHeaders.java and modules/server/Ajp13.java. I've done some minimal testing, and it seems to fix the problem. I also did a tiny bit of further clean

BugRat Report #535 has been filed.

2000-12-05 Thread BugRat Mail System
Bug report #535 has just been filed. You can view the report at the following URL: REPORT #535 Details. Project: Tomcat Category: Bug Report SubCategory: New Bug Report Class: swbug State: received Priority: medium Severity: serious

BugRat Report #534 has been filed.

2000-12-05 Thread BugRat Mail System
Bug report #534 has just been filed. You can view the report at the following URL: REPORT #534 Details. Project: Tomcat Category: Bug Report SubCategory: New Bug Report Class: swbug State: received Priority: medium Severity: serious

System.out, System.err redirecting request

2000-12-05 Thread Jonathan Eric Miller
I'm wondering if the developers of Tomcat might consider implementing something in Tomcat so that a user can add a setting to server.xml similar to how other log files are configured so that you can redirect System.err and System.out to files. IMHO, this would be very useful. In fact, I suspect t

BugRat Report #533 has been filed.

2000-12-05 Thread BugRat Mail System
Bug report #533 has just been filed. You can view the report at the following URL: REPORT #533 Details. Project: Tomcat Category: Bug Report SubCategory: New Bug Report Class: swbug State: received Priority: medium Severity: serious

startup for jakarta-tomcat-4.0-m4

2000-12-05 Thread Patrick McFarlane
I've been using tomcat 3.2 and would like to upgrade to 4.0 for it's support of XML compliant JSP (i.e. ) but am having trouble finding docs. What I would like to do is startup up Tomcat similarly to the way I've been starting it in 3.2 which is org.apache.tomcat.startup.Tomcat , but things seem

Re: Proposal: new commiter

2000-12-05 Thread Glenn Nielsen
+1 Thanks Dan [EMAIL PROTECTED] wrote: > > Hi, > > Please vote for Dan Milstein as a new commiter for tomcat. > > Dan did an excelent review of the connector code, documented the protocol, > proposed many enhancements and re-factored the Ajp13 adapter. > > We are very lucky to have someone w

Re: No Route To Host exp

2000-12-05 Thread Glenn Nielsen
Make sure you haven't commented out the AJP12 connector in your server.xml config file. AJP12 is required to shutdown tomcat. Glenn Matthew Reynolds wrote: > > While trying to shutdown tomcat, I get this exception: > java.net.NoRouteToHostException: Connection timed out > at java.net.P

cvs commit: jakarta-tomcat/src/share/org/apache/tomcat/core Handler.java

2000-12-05 Thread costin
costin 00/12/05 19:59:30 Modified:src/facade22/org/apache/tomcat/facade RequestDispatcherImpl.java ServletWrapper.java src/share/org/apache/tomcat/context ErrorHandler.java src/share/org/apache/tomcat/core Handler.java Log: Few

multiple cookies, PR 371, any news?

2000-12-05 Thread Palle Girgensohn
Hi! Just installed tomcat 3.2 final. I am forced to still use apj12 due to tomcat failing to create multiple cookies at once when using ajp13 (and possibly also redirect): AJP13: HTTP/1.1 302 Date: Wed, 06 Dec 2000 03:38:19 GMT Server: Apache/1.3.14 (Unix) mod_jk Pragma: no-cache Cache-contro

Re: Kudos to Jason and his benchmarking report

2000-12-05 Thread Jason Brittain
Hi Roy. Roy Wilson wrote: > Jason, > > This is an impressive piece of work: very systematic and very > well-documented. I wrote it to be similar to the Volano Java benchmarks. (I really enjoy those! :) > I have several questions. I ran some similar tests > (without adjusting configurat

RE: Class loading & classloader visibility test results

2000-12-05 Thread Aron Kramlik
Rob, This is great information. I wonder if you could explain why it is that I need to put xml4j.jar file under the $CLASSPATH (i.e. $TOMCAT_HOME/lib) that is loaded by an init() method of a servlet? Once I do this the class, com.ibm.xml.parsers.DOMParser, is found. Stack trace below. Anyh hel

Re: Kudos to Jason and his benchmarking report

2000-12-05 Thread cmanolache
> BTW, little credit should go to me re: ab use (or should I say "abuse"). > Craig suggested using ab and Costin did it (and did it, ... :-)). Pier > "inspired" me to look at ab code and think about how it can be used as a > tool for getting information about both behavior and the resource usag

Re: Class loading & classloader visibility test results

2000-12-05 Thread Rob Shaw
Tomcat 3.1 and 3.2. I haven't run the tests for 4.0. Thanks for the feedback, Rob. - Original Message - From: "Brian Bucknam" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Cc: "Rob Shaw" <[EMAIL PROTECTED]> Sent: Tuesday, December 05, 2000 6:36 PM Subject: Re: Class loading & classloader

[PATCH] bad default charset encoding in jsp pages

2000-12-05 Thread Palle Girgensohn
Hi! jsp pages served by tomcat contain a bad charset string in their http header. This is not understood by some non iso8859-1 systems/browsers. Macintosh w/ netscape 4.76, for example will fail to understand that 8859_1 is actually ISO-8859-1. According to jakarta-tomcat/src/webpages/docs/api/

Re: Class loading & classloader visibility test results

2000-12-05 Thread Brian Bucknam
Rob Shaw wrote: > I was unclear as to how Tomcat was resolving class > loading and the visibility of classes to a context's > classloader so I created a simlpe test suite. That is very helpful and informative (and cool!). I (and probably others) would like to know, though: What version of Tomca

BugRat Report #532 has been filed.

2000-12-05 Thread BugRat Mail System
Bug report #532 has just been filed. You can view the report at the following URL: REPORT #532 Details. Project: Tomcat Category: Bug Report SubCategory: New Bug Report Class: swbug State: received Priority: medium Severity: serious

BugRat Report #531 has been filed.

2000-12-05 Thread BugRat Mail System
Bug report #531 has just been filed. You can view the report at the following URL: REPORT #531 Details. Project: Tomcat Category: Bug Report SubCategory: New Bug Report Class: swbug State: received Priority: medium Severity: serious

Re: Class loading & classloader visibility test results

2000-12-05 Thread Craig R. McClanahan
Rob Shaw wrote: > For those that may be interested... > > I was unclear as to how Tomcat was resolving class > loading and the visibility of classes to a context's > classloader so I created a simlpe test suite. > The test results are attached. > Rob, Thanks for doing the chart. I would also p

Kudos to Jason and his benchmarking report

2000-12-05 Thread Roy Wilson
Jason, This is an impressive piece of work: very systematic and very well-documented. I have several questions. I ran some similar tests (without adjusting configuration parameters) and noticed variability as large as 10% in throughput that surprised me, even when N = 10,000. To reduce that,

BugRat Report #530 has been filed.

2000-12-05 Thread BugRat Mail System
Bug report #530 has just been filed. You can view the report at the following URL: REPORT #530 Details. Project: Tomcat Category: Bug Report SubCategory: New Bug Report Class: swbug State: received Priority: medium Severity: serious

Re: Proposal: new commiter

2000-12-05 Thread Arieh Markel
> > Hi, > > Please vote for Dan Milstein as a new commiter for tomcat. +1 Arieh > > Dan did an excelent review of the connector code, documented the protocol, > proposed many enhancements and re-factored the Ajp13 adapter. > > We are very lucky to have someone who is interested in this di

Re: Proposal: new commiter

2000-12-05 Thread Jon Stevens
on 12/5/2000 2:48 PM, "[EMAIL PROTECTED]" <[EMAIL PROTECTED]> wrote: > Hi, > > Please vote for Dan Milstein as a new commiter for tomcat. > > Dan did an excelent review of the connector code, documented the protocol, > proposed many enhancements and re-factored the Ajp13 adapter. > > We are ve

Re: HTTP Extension Framework Spec

2000-12-05 Thread Jon Stevens
on 12/5/2000 12:59 PM, "PATIL,BAPU (HP-Cupertino,ex1)" <[EMAIL PROTECTED]> wrote: > Are there any plans to support HTTP Extension Framework Spec (RFC2774 at > http://www.w3.org/Protocols/HTTP/ietf-http-ext/) with Tomcat and Apache Web > Server? > > -thanks > bapu patil Sure! Submit a patch to i

Re: Proposal: new commiter

2000-12-05 Thread Hans Bergsten
[EMAIL PROTECTED] wrote: > > Hi, > > Please vote for Dan Milstein as a new commiter for tomcat. +1 Hans -- Hans Bergsten [EMAIL PROTECTED] Gefion Software http://www.gefionsoftware.com

Re: Benchmarks

2000-12-05 Thread cmanolache
Hi Jason, > It's nice, isn't it? I was going to write something like it, but since it was > already there, I just used it. Like I said, it's got a few bugs, but it mostly > gives useful information, and works pretty well. Open source :-) > I may know why this is. Before running my benchmarks

RE: Proposal: new commiter

2000-12-05 Thread Nacho
+1 Good Work, Dan. Saludos , Ignacio J. Ortega > -Mensaje original- > De: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] > Enviado el: martes 5 de diciembre de 2000 23:49 > Para: [EMAIL PROTECTED] > Cc: Dan Milstein > Asunto: Proposal: new commiter > > > Hi, > > Please vote for Dan M

Re: Proposal: new commiter

2000-12-05 Thread Craig R. McClanahan
+1 Craig [EMAIL PROTECTED] wrote: > Hi, > > Please vote for Dan Milstein as a new commiter for tomcat. > > Dan did an excelent review of the connector code, documented the protocol, > proposed many enhancements and re-factored the Ajp13 adapter. > > We are very lucky to have someone who is int

No Route To Host exp

2000-12-05 Thread Matthew Reynolds
While trying to shutdown tomcat, I get this exception: java.net.NoRouteToHostException: Connection timed out at java.net.PlainSocketImpl.socketConnect(Native Method) at java.net.PlainSocketImpl.doConnect(PlainSocketImpl.java:312) at java.net.PlainSocketImpl.connectToAddress

cvs commit: jakarta-tomcat/src/share/org/apache/tomcat/util/log LogEntry.java QueueLogger.java

2000-12-05 Thread costin
costin 00/12/05 15:31:16 Modified:src/share/org/apache/tomcat/util/log QueueLogger.java Added: src/share/org/apache/tomcat/util/log LogEntry.java Log: Small change in util.log - expose the LogEntry. I'm going to do another set of small changes to clean up the way logge

Class loading & classloader visibility test results

2000-12-05 Thread Rob Shaw
For those that may be interested... I was unclear as to how Tomcat was resolving class loading and the visibility of classes to a context's classloader so I created a simlpe test suite. The test results are attached. Rob Shaw Servidium Inc. Title: Tomcat Test Results Class Loading Tests Setu

Proposal: new commiter

2000-12-05 Thread cmanolache
Hi, Please vote for Dan Milstein as a new commiter for tomcat. Dan did an excelent review of the connector code, documented the protocol, proposed many enhancements and re-factored the Ajp13 adapter. We are very lucky to have someone who is interested in this difficult area and continues the g

Re: Benchmarks

2000-12-05 Thread Jason Brittain
Hi Costin. [EMAIL PROTECTED] wrote: > Hi Jason, > > First, it's really great to see the discussions about performance ! > Your tests are extremely usefull I'm just returning the favor, after sitting through your ApacheCon session about the Tomcat performance/benchmarking.. > I use ab and ap

Re: Benchmarks: Catalina M5 vs. Apache 1.3.12

2000-12-05 Thread Remy Maucherat
Quoting Jason Brittain <[EMAIL PROTECTED]>: > > I wrote up a text file about benchmarking and comparing Tomcat-4.0-M5 > (pre-release) > and Apache 1.3.12. It's attached to this message. I wrote it for > anyone who is interested > (even non-Java-saavy people) to know how the raw content servi

Re: Benchmarks: Catalina M5 vs. Apache 1.3.12

2000-12-05 Thread Pier P. Fumagalli
Eric Hartmann <[EMAIL PROTECTED]> wrote: > > Hello, > > OpenSta seems to be a good harness test with multiple client. You can find > it at http://sourceforge.net/projects/opensta/ And there's always Apache Jmeter Pier -- Pier P. Fumagalli Apache Software

Re: Benchmarks: Catalina M5 vs. Apache 1.3.12

2000-12-05 Thread Gomez Henri
> I wrote up a text file about benchmarking and comparing Tomcat-4.0-M5 > (pre-release) > and Apache 1.3.12. It's attached to this message. I wrote it for > anyone who is interested > (even non-Java-saavy people) to know how the raw content serving > performance of > Catalina and its built-in

Re: Modifying the Ajp13 Protocol

2000-12-05 Thread Gomez Henri
> As I'm working through the ajp13 code (C and Java), I'm discovering that > there is some basic work which needs to be done on the protocol itself > (as well as a lot of work on the implementations). Cool there is some need for. > Specifically: > > - If the request contains > 8K of header/at

BugRat Report #529 has been filed.

2000-12-05 Thread BugRat Mail System
Bug report #529 has just been filed. You can view the report at the following URL: REPORT #529 Details. Project: Jasper Category: Bug Report SubCategory: New Bug Report Class: swbug State: received Priority: medium Severity: serious

HTTP Extension Framework Spec

2000-12-05 Thread PATIL,BAPU (HP-Cupertino,ex1)
Are there any plans to support HTTP Extension Framework Spec (RFC2774 at http://www.w3.org/Protocols/HTTP/ietf-http-ext/) with Tomcat and Apache Web Server? -thanks bapu patil

Apache/tomcat config question?

2000-12-05 Thread Ajanta Phatak
Hi all, I am currently trying to use URL rewriting for using sessions in our JSP application. I used the encodeURL method to encode the URL which returns a ;jsessionid-.. appended to my URL. Now, when I click on this I get a page not found error. We are using Apache/tomcat as our backend. Wanted

AW: Benchmarks: Catalina M5 vs. Apache 1.3.12

2000-12-05 Thread Juergen Fey
Hi, The notion of "tomcat is fast enough" used to be a dream but we`re getting there. I am going to run a few big sites on a combo of apache and tomcat, since there are a lot of PHP and mod_perl scripts in use. That means that for a given period of time Apache needs to sit in front of Tomcat to

Re: Benchmarks: Catalina M5 vs. Apache 1.3.12

2000-12-05 Thread Jason Brittain
Hi there Chris. You can certainly do just what I did, use ApacheBench and see what numbers you get with each server. There's also another tester called Apache JMeter, which will show you graphical views of the tests as they're happening. JMeter has some bugs, but it's good anyway. You can fi

BugRat Report #528 has been filed.

2000-12-05 Thread BugRat Mail System
Bug report #528 has just been filed. You can view the report at the following URL: REPORT #528 Details. Project: Tomcat Category: Bug Report SubCategory: New Bug Report Class: docbug State: received Priority: medium Severity: non-cri

[PATCH] Fix for src/doc/faq - What do different init parameters for the JSP engine mean?

2000-12-05 Thread David Rees
Can someone apply this patch? It looks like the faq had fallen a little out of date while the name of the JspServlet changed. Took me a little while to figure out why JSPs stopped working after following the FAQ. :-) This diff was performed on tomcat-3.2 final src tarball. Thanks, -Dave ---

Benchmarks

2000-12-05 Thread cmanolache
Hi Jason, First, it's really great to see the discussions about performance ! Your tests are extremely usefull I use ab and apache very often ( I used it as the main tool to tune tomcat 3.2 and now 3.3 ). One thing that strikes me is the fact that I have a slower computer ( Celeron / 363 ) my nu

RE: bug # 527

2000-12-05 Thread Alexandre A. Drummond Barroso
Just clarifying some things: - Windows 98 Control Panel doesn't have System/Environment to set environment variables, if you want some environment variable available to every windows task you must set this on AUTOEXEC.BAT (yes the old batch file ;). If you set an environment variable inside a co

RE: Benchmarks: Catalina M5 vs. Apache 1.3.12

2000-12-05 Thread Eric Hartmann
Hello, OpenSta seems to be a good harness test with multiple client. You can find it at http://sourceforge.net/projects/opensta/ Eric -Original Message- From: Curtis Dougherty [mailto:[EMAIL PROTECTED]] Sent: mardi 5 décembre 2000 20:32 To: '[EMAIL PROTECTED]' Subject: RE: Benchmarks: C

Re: BugRat Report #527 has been filed.

2000-12-05 Thread Casper Gjerris
From: [EMAIL PROTECTED] > Bug report #527 has just been filed. > > Synopsis: > Trouble starting Tomcat > > Description: > 1. On windows 98, classpath, Java_home etc. can't be saved and they should be set >each time. > 2. MS-DOS window reports 'Out of Environment Space' error message and does

RE: Benchmarks: Catalina M5 vs. Apache 1.3.12

2000-12-05 Thread Curtis Dougherty
Jason - I am attempting to generate some server performance numbers as well. What tool would you recommend to test TOMCAT vs. ??? If you can point me in the right direction for a good test harness to plug-in I would be very grateful. Thank you for your time and consideration of this matter.

bug # 527

2000-12-05 Thread Ashutosh Aman
There is a bug in the bug reporting system. WorkAround and how to reproduce did not appear with my submission. Here is the description: * how to reproduce Install tomcat on windows98 and try to run using startup.bat file. Workaround WORK AROUND # 1 Include t

Benchmarks: Catalina M5 vs. Apache 1.3.12

2000-12-05 Thread Jason Brittain
I wrote up a text file about benchmarking and comparing Tomcat-4.0-M5 (pre-release) and Apache 1.3.12. It's attached to this message. I wrote it for anyone who is interested (even non-Java-saavy people) to know how the raw content serving performance of Catalina and its built-in web server c

Unicode decoding (seems to be a bug)

2000-12-05 Thread Michel Jacobson
Hy, I find a trouble using Tomcat (on win95 with Apache) with unicode chars in url. Tomcat send me the error: "Decode error" from unUrlDecode(String) function in the package org.apache.tomcat.util; Watching this function, I see that the algorithme only handle chars in %xx format, but for some un

Re: MVC problem

2000-12-05 Thread Kedar Choudary
I guess, there IS a way to forward the .jsp processing to tomcat's jsp-servlet, even when you have registered your own servlet to process all .jps requests. Instead of using ServletContext.getRequestDispatcher(url).forward(request, response); use ServletContext.getNamedRequestDispatcher("jse

Modifying the Ajp13 Protocol

2000-12-05 Thread Dan Milstein
As I'm working through the ajp13 code (C and Java), I'm discovering that there is some basic work which needs to be done on the protocol itself (as well as a lot of work on the implementations). Specifically: - If the request contains > 8K of header/attribute information, the protocol fails.

BugRat Report #525 has been filed.

2000-12-05 Thread BugRat Mail System
Bug report #525 has just been filed. You can view the report at the following URL: REPORT #525 Details. Project: Jasper Category: Feature Requests SubCategory: New Feature Class: feature State: received Priority: medium Severity: non

BugRat Report #527 has been filed.

2000-12-05 Thread BugRat Mail System
Bug report #527 has just been filed. You can view the report at the following URL: REPORT #527 Details. Project: Tomcat Category: Bug Report SubCategory: New Bug Report Class: swbug State: received Priority: high Severity: critical C

BugRat Report #526 has been filed.

2000-12-05 Thread BugRat Mail System
Bug report #526 has just been filed. You can view the report at the following URL: REPORT #526 Details. Project: Tomcat Category: Feature Requests SubCategory: New Feature Class: swbug State: received Priority: medium Severity: serio

BugRat Report #524 has been filed.

2000-12-05 Thread BugRat Mail System
Bug report #524 has just been filed. You can view the report at the following URL: REPORT #524 Details. Project: Tomcat Category: Bug Report SubCategory: New Bug Report Class: webbug State: received Priority: medium Severity: serious

cvs commit: jakarta-tomcat/src/share/org/apache/tomcat/core Handler.java Request.java Response.java

2000-12-05 Thread larryi
larryi 00/12/05 06:02:41 Modified:src/facade22/org/apache/tomcat/facade RequestDispatcherImpl.java ServletWrapper.java src/facade22/org/apache/tomcat/modules/facade22 JspInterceptor.java src/share/org/apache/

cvs commit: jakarta-tomcat/src/share/org/apache/tomcat/resources LocalStrings_es.properties LocalStrings.properties

2000-12-05 Thread larryi
larryi 00/12/05 05:24:35 Modified:src/share/org/apache/tomcat/resources LocalStrings_es.properties LocalStrings.properties Log: Port Tomcat 3.2 strings for RequestDispatcherImpl. Fix typo in resource string used by HttpServletResponseFacade. Revisi

cvs commit: jakarta-tomcat/src/share/org/apache/tomcat/core ContextManager.java

2000-12-05 Thread larryi
larryi 00/12/05 05:20:47 Modified:src/share/org/apache/tomcat/core ContextManager.java Log: Port showDebugInfo property from Tomcat 3.2. Make handlerError() public. Revision ChangesPath 1.156 +21 -2 jakarta-tomcat/src/share/org/apache/tomcat/core/ContextMa

cvs commit: jakarta-tomcat-4.0/jasper/src/share/org/apache/jasper/compiler JspParseEventListener.java

2000-12-05 Thread pierred
pierred 00/12/05 04:23:53 Modified:jasper/src/share/org/apache/jasper/compiler JspParseEventListener.java Log: Ooops... last fix broke tag libraries handling (was only processed for XML syntax). Things now back to normal. Revision ChangesPath 1.

What kind of info you can get from ApacheBench

2000-12-05 Thread Roy Wilson
>> Original Message << On 12/5/00, 1:42:41 AM, [EMAIL PROTECTED] wrote regarding Re: Benchmarks / Performance Tuning: > It is very important to use "ab -c 20 " ( or more ) to get real > information about how the server works under load - "ab -c 1 " is of no >

cvs commit: jakarta-tomcat-4.0/jasper/src/share/org/apache/jasper/compiler DelegatingListener.java JspParseEventListener.java ParseEventListener.java ParserXJspSax.java ParserXJspSaxHandler.java

2000-12-05 Thread pierred
pierred 00/12/05 03:05:30 Modified:jasper/src/share/org/apache/jasper/compiler DelegatingListener.java JspParseEventListener.java ParseEventListener.java ParserXJspSax.java ParserXJspSaxHandler.java Log: Changes

Re: tomcat for Debian [RPM for jakarta/xml apaches projects]

2000-12-05 Thread Thom May
*Wipes brow* ok, I'll gracefully run away from this one then ;-) -Thom Amy: deb packages for JDK1.3 (blackdown jdk) at deb http://www.mirror.ac.uk/sites/ftp.blackdown.org/java-linux/debian/ woody non-free HTH On Tue, Dec 05, 2000 at 02:28:32 +0900, Takashi Okamoto said: > > I didn't know much a

BugRat Report #523 has been filed.

2000-12-05 Thread BugRat Mail System
Bug report #523 has just been filed. You can view the report at the following URL: REPORT #523 Details. Project: Jasper Category: Bug Report SubCategory: New Bug Report Class: swbug State: received Priority: medium Severity: serious

Re: My patches for Tomcat 3.2 wrt mutlibyte characters

2000-12-05 Thread Kazuhiro Kazama
From: Pilho Kim <[EMAIL PROTECTED]> Subject: My patches for Tomcat 3.2 wrt mutlibyte characters Date: Tue, 5 Dec 2000 09:47:38 +0900 (KST) Message-ID: <[EMAIL PROTECTED]> > Try to visit > > http://www.javaclue.org/tomcat/patch32/dopatch.html > > I hope that those would be adopted in TC 3.2.1