Re: Load balancing - fail-over support with mod_webapp

2001-12-18 Thread Bill Barker
I'm going to ignore the complete problem case where you have configured Apache to be the "default servlet", and index.html is a frameset with 'n' jsp frames (which will typically result in 'n' different sessions). This is why mod_webapp only supports forwardAll, and forwardAll is the default for

Servlet Caching problem

2001-12-18 Thread rakesh
hi I am facing problem in tomcat 3.2.3 while recompiling the servlet ,whenever i make any changes in any existing servlet but after compiling the servlet its still show me the old output of the servlet because its taking that servlet from caching and its not reffreshing that unless until i don

Re: Load balancing - fail-over support with mod_webapp

2001-12-18 Thread Mathias Herberts
> Another solution would be to calculate some sort > of checksum on each session id received for a vm that is > no longer on the air. Then modulo that number by the number of > available tc instances in the cluster, and route the request to the > the jth server in the cluster (where j is the calcu

Re: cvs commit: jakarta-tomcat/src/share/org/apache/tomcat/util JavaGeneratorTool.java

2001-12-18 Thread Bill Barker
Oh, well, I guess I had to screw up eventually :-( Thanks for cleaning up my mess. - Original Message - From: <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, December 18, 2001 6:39 PM Subject: cvs commit: jakarta-tomcat/src/share/org/apache/tomcat/util JavaGeneratorTool.java

cvs commit: jakarta-tomcat/src/share/org/apache/tomcat/util JavaGeneratorTool.java

2001-12-18 Thread larryi
larryi 01/12/18 18:39:39 Modified:src/share/org/apache/tomcat/util JavaGeneratorTool.java Log: Fix IndexOutOfBoundsException Revision ChangesPath 1.5 +1 -1 jakarta-tomcat/src/share/org/apache/tomcat/util/JavaGeneratorTool.java Index: JavaGeneratorTool.j

cvs commit: jakarta-tomcat-4.0/webapps/admin/WEB-INF/classes/org/apache/webapp/admin ActionTag.java ActionsTag.java

2001-12-18 Thread craigmcc
craigmcc01/12/18 17:58:10 Modified:webapps/admin/WEB-INF controls.tld Added: webapps/admin/WEB-INF/classes/org/apache/webapp/admin ActionTag.java ActionsTag.java Log: Add a simple "instant actions" tag that can be used for the "Available Actions" co

RE: [PATCH] Bug 5471 - JspC broken when compiling webapps

2001-12-18 Thread Steve Downey
You may want this one, also. Turns out that jasper.sh is mildly broken on HEAD. It doesn't grab the libraries in shared/lib or the classes in shared/classes. I'm guessing that JspC isn't the most heavily exercised part of the system. Index: jasper.sh ===

Re: Load balancing - fail-over support with mod_webapp

2001-12-18 Thread Craig R. McClanahan
On Tue, 18 Dec 2001 [EMAIL PROTECTED] wrote: > Date: Tue, 18 Dec 2001 14:14:10 -0800 (PST) > From: [EMAIL PROTECTED] > Reply-To: Tomcat Developers List <[EMAIL PROTECTED]> > To: Tomcat Developers List <[EMAIL PROTECTED]> > Subject: Re: Load balancing - fail-over support with mod_webapp > > On T

DO NOT REPLY [Bug 5314] - NPE when reading web.xml without DOCTYPE declaration

2001-12-18 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT . ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE. http://nagoya.apache.org/bugzilla/show_bu

cvs commit: jakarta-tomcat/src/share/org/apache/tomcat/util/xml XmlMapper.java

2001-12-18 Thread bojan
bojan 01/12/18 16:02:09 Modified:src/share/org/apache/tomcat/util/xml XmlMapper.java Log: Tabs corrected... Revision ChangesPath 1.40 +2 -2 jakarta-tomcat/src/share/org/apache/tomcat/util/xml/XmlMapper.java Index: XmlMapper.java ==

cvs commit: jakarta-tomcat/src/share/org/apache/tomcat/util/xml XmlMapper.java

2001-12-18 Thread bojan
bojan 01/12/18 15:59:25 Modified:src/share/org/apache/tomcat/util/xml XmlMapper.java Log: Jochen Wiedmann fix for web.xml that has no DOCTYPE Revision ChangesPath 1.39 +8 -7 jakarta-tomcat/src/share/org/apache/tomcat/util/xml/XmlMapper.java Index: XmlMa

DO NOT REPLY [Bug 4426] - DB polling

2001-12-18 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT . ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE. http://nagoya.apache.org/bugzilla/show_bu

DO NOT REPLY [Bug 5497] New: - JSP include not always including

2001-12-18 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT . ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE. http://nagoya.apache.org/bugzilla/show_bu

Re: Load balancing - fail-over support with mod_webapp

2001-12-18 Thread Tom Drake
Adding the vmroute may help with load balancing, but it doesn't help with fail-over. What happens when the tomcat instance that created a session goes down, and then the user sends another request? It should be routed to 'another' tomcat in the cluster. This 'other' tc instance should probably bec

DO NOT REPLY [Bug 5353] - Characters with accents not displayed correctly in Tomcat 3.3

2001-12-18 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT . ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE. http://nagoya.apache.org/bugzilla/show_bu

Re: Tomcat 3.3 deployment - last minute problem

2001-12-18 Thread Renato
Hi Bill, Thanks for the help. I found out the problem. It was jikes. I was using jikes in the JspInterceptor and somewhat it wasn't working. Now, I will upgrade all my user base to Tomcat 3.3 :)) Renato. On Tue, 18 Dec 2001 14:29:24 -0800, "Bill Barker" <[EMAIL PROTECTED]> escreveu : >

Re: Tomcat 3.3 deployment - last minute problem

2001-12-18 Thread Bill Barker
The only thing that I can think of is that your javac doesn't support the -encoding switch. Is it possible that you have an old copy of tools.jar somewhere? Jasper writes out the .java file in UTF8 encoding, which is then passed to javac to compile to a .class. If javac is trying to read the .j

cvs commit: jakarta-tomcat-4.0/webapps/admin/WEB-INF/classes/org/apache/webapp/admin TreeControlTag.java

2001-12-18 Thread amyroh
amyroh 01/12/18 14:59:41 Modified:webapps/admin/WEB-INF/classes/org/apache/webapp/admin TreeControlTag.java Log: The selected node does not get highlighted when the node is selected. Made changes so that the tree also gets refreshed with each node selectio

cvs commit: jakarta-tomcat-connectors/jk/native2/server/apache2 mod_jk.c

2001-12-18 Thread costin
costin 01/12/18 14:51:55 Modified:jk/native2/common jk_ajp14_worker.c jk/native2/include jk_webapp.h jk/native2/jni jk_jni_aprImpl.c jk/native2/server/apache2 mod_jk.c Log: Move the reading of initial post data after the sending the requ

Re: [PATCH] Bug 5471 - JspC broken when compiling webapps

2001-12-18 Thread Denis Balazuc
> Believe or not, Jasper once mangled the file names in a way similar to what > is in the patch. It was modified in response to a bug (Bugzilla is currently > unavailable, so I can't look up the bug number). The filer complained that > for a file with deeply nested path, the resultant file nam

cvs commit: jakarta-tomcat-connectors/jk/java/org/apache/jk/common - New directory

2001-12-18 Thread costin
costin 01/12/18 14:18:08 jakarta-tomcat-connectors/jk/java/org/apache/jk/common - New directory -- To unsubscribe, e-mail: For additional commands, e-mail:

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

2001-12-18 Thread costin
costin 01/12/18 14:17:59 Added: jk/java/org/apache/jk/server/tomcat33 Ajp14Interceptor.java Log: Initial commit, the code from ajp Revision ChangesPath 1.1 jakarta-tomcat-connectors/jk/java/org/apache/jk/server/tomcat33/Ajp14Interceptor.java Ind

cvs commit: jakarta-tomcat-connectors/jk/java/org/apache/jk/server/tomcat33 - New directory

2001-12-18 Thread costin
costin 01/12/18 14:17:40 jakarta-tomcat-connectors/jk/java/org/apache/jk/server/tomcat33 - New directory -- To unsubscribe, e-mail: For additional commands, e-mail:

cvs commit: jakarta-tomcat-connectors/jk/java/org/apache/jk/server/tomcat40/config - New directory

2001-12-18 Thread costin
costin 01/12/18 14:17:03 jakarta-tomcat-connectors/jk/java/org/apache/jk/server/tomcat40/config - New directory -- To unsubscribe, e-mail: For additional commands, e-mail:

cvs commit: jakarta-tomcat-connectors/jk/java/org/apache/jk/server/tomcat40 - New directory

2001-12-18 Thread costin
costin 01/12/18 14:16:50 jakarta-tomcat-connectors/jk/java/org/apache/jk/server/tomcat40 - New directory -- To unsubscribe, e-mail: For additional commands, e-mail:

cvs commit: jakarta-tomcat-connectors/jk/java/org/apache/jk/server - New directory

2001-12-18 Thread costin
costin 01/12/18 14:16:46 jakarta-tomcat-connectors/jk/java/org/apache/jk/server - New directory -- To unsubscribe, e-mail: For additional commands, e-mail:

cvs commit: jakarta-tomcat-connectors/jk/java/org/apache/jk Ajp13.java Ajp13Packet.java AjpHandler.java NegociationHandler.java RequestHandler.java

2001-12-18 Thread costin
costin 01/12/18 14:16:37 Added: jk/java/org/apache/jk Ajp13.java Ajp13Packet.java AjpHandler.java NegociationHandler.java RequestHandler.java Log: Adding the files from org.apache.ajp. This is the same code, as startup point fo

Re: Load balancing - fail-over support with mod_webapp

2001-12-18 Thread costinm
On Tue, 18 Dec 2001, Craig R. McClanahan wrote: > The load balancer routing from JK hasn't ever been implemented in > Catalina yet. Patches welcome :-). Can we get a 'setRequest' method on Manager ? I'm trying to find workarounds, but that would be the simple solution. Again, adding support fo

RE: [PATCH] Bug 5471 - JspC broken when compiling webapps

2001-12-18 Thread Kin-Man Chung
I responsed in haste, without reading your patch carefully. :( My apologies. I'll get the patch in, later. Thanks. > Date: Tue, 18 Dec 2001 16:44:42 -0500 > From: Steve Downey <[EMAIL PROTECTED]> > Subject: RE: [PATCH] Bug 5471 - JspC broken when compiling webapps > To: 'Tomcat Developers Li

Re: load balancing - integration thoughts

2001-12-18 Thread Tom Drake
Craig: I'll look into both of these suggestions. The Valve idea sounds like a winner, since it wouldn't require changing anything in the 'other' packages. Thanks. Tom - Original Message - From: "Craig R. McClanahan" <[EMAIL PROTECTED]> To: "Tomcat Developers List" <[EMAIL PROTECTED]> C

RE: [PATCH] Bug 5471 - JspC broken when compiling webapps

2001-12-18 Thread Steve Downey
The patch doesn't mangle the class file name, just the package name, so that the resulting java file is put in a directory that matches the path of the jsp file. Just putting the java file in a subdirectory is insufficient, though. Unless the packages are different, there isn't a way to disambigua

Re: [PATCH] Bug 5471 - JspC broken when compiling webapps

2001-12-18 Thread Kin-Man Chung
Believe or not, Jasper once mangled the file names in a way similar to what is in the patch. It was modified in response to a bug (Bugzilla is currently unavailable, so I can't look up the bug number). The filer complained that for a file with deeply nested path, the resultant file name is too l

DO NOT REPLY [Bug 5250] - Load balancing workers do not correctly handle Cookies conformant with RFC 2965

2001-12-18 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT . ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE. http://nagoya.apache.org/bugzilla/show_bu

Re: Load balancing - fail-over support with mod_webapp

2001-12-18 Thread Craig R. McClanahan
On Tue, 18 Dec 2001, Tom Drake wrote: > Date: Tue, 18 Dec 2001 13:25:07 -0800 > From: Tom Drake <[EMAIL PROTECTED]> > Reply-To: Tomcat Developers List <[EMAIL PROTECTED]>, > Tom Drake <[EMAIL PROTECTED]> > To: Tomcat Developers List <[EMAIL PROTECTED]> > Subject: Re: Load balancing - fail-

Re: load balancing - integration thoughts

2001-12-18 Thread Craig R. McClanahan
On Tue, 18 Dec 2001, Mika Goeckel wrote: > Date: Tue, 18 Dec 2001 21:12:34 +0100 > From: Mika Goeckel <[EMAIL PROTECTED]> > Reply-To: Tomcat Developers List <[EMAIL PROTECTED]> > To: Tom Drake <[EMAIL PROTECTED]>, [EMAIL PROTECTED] > Cc: Craig McClanahan <[EMAIL PROTECTED]> > Subject: Re: load

cvs commit: jakarta-tomcat-4.0 RELEASE-NOTES-4.0.2-B1.txt

2001-12-18 Thread remm
remm01/12/18 13:22:43 Modified:.Tag: tomcat_40_branch RELEASE-NOTES-4.0.2-B1.txt Log: - (big) changelog update. Revision ChangesPath No revision No revision 1.1.2.4 +133 -1jakarta-tomcat-4.0/Attic/RELE

Re: Load balancing - fail-over support with mod_webapp

2001-12-18 Thread Tom Drake
Mathias: In Tomcat 4, unless I'm not reading the code correctly, or completely, it doesn't appear that that any routing information is stored in the session id. Can anyone comment on this? Tom - Original Message - From: "Mathias Herberts" <[EMAIL PROTECTED]> To: "Tomcat Developers Lis

Re: load balancing - integration thoughts

2001-12-18 Thread Tom Drake
Mika: That would certainly work. However, would this mean that all SessionListeners would start picking up this new event? Tom - Original Message - From: "Mika Goeckel" <[EMAIL PROTECTED]> To: "Tom Drake" <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]> Cc: "Craig McClanahan" <[EMAIL PROTECTED

[PATCH] Bug 5471 - JspC broken when compiling webapps

2001-12-18 Thread Steve Downey
This patch changes CommandLineContext.getServletPackageName() to return a package name based on the path to the JSP as well as the package name supplied on the command line. Without a change like this, a webapp that has files with the same name, such as index.jsp, in more than one place is compil

Re: Tomcat 3.3 deployment - last minute problem

2001-12-18 Thread Renato
Hi all, I'm investigating this problem and may found something. The html that is pushed to my browser is definitely pure Unicode ( UTF8 ), so somehow the HTML bytes are not been properly translated to chars. Where can I look in the code to make some tests ? Thanks Renato. > Reply-to: "Tomcat

Re: Load balancing - fail-over support with mod_webapp

2001-12-18 Thread Mathias Herberts
Tom Drake wrote: > > Mathias; > > Thanks for your very informative reply. From your reply, it seems > that mod_jk comes close to doing what I want, and should actually > provide the fail-over I'm looking for, however not in the most > optimal way. > > What would be involved in adding (optionall

[PATCH] jakarta-tomcat-4.0/webapps/admin

2001-12-18 Thread Manveen Kaur
Hi, Please commit my patch to the HEAD branch. Sincerely, Manveen == Comments: - This is a fix for the bug: The selected node does not get highlighted when the node is selected. Made changes so that the tree also gets refreshed with each node selection, along with loading

Re: load balancing - integration thoughts

2001-12-18 Thread Mika Goeckel
Hi Tom, hi Craig! Another approach would be to extend the event model that is used for Session (Servlet Spec SRV.10.1/SRV15.1.13) to fire events when a request is completed.. Craig, would it be compliant with the spec to add another subclass of SessionEvent (Maybe SessionRequestEvent)? Then you

DO NOT REPLY [Bug 5490] - references to non-existant URL's cause tomcat to hang

2001-12-18 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT . ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE. http://nagoya.apache.org/bugzilla/show_bu

Q about working on a bug

2001-12-18 Thread David Hoag
I submitted a refactoring for o-a-j-JspC as a patch. There is now a bug report (5471) that will likely require changes to JspC. Should I use the CVS latest as my starting point? or the refactored code? What would make it easier? - Dave __

Re: Load balancing - fail-over support with mod_webapp

2001-12-18 Thread Tom Drake
Mathias; Thanks for your very informative reply. From your reply, it seems that mod_jk comes close to doing what I want, and should actually provide the fail-over I'm looking for, however not in the most optimal way. What would be involved in adding (optionally configured) logic to mod_jk that w

Re: Load balancing - fail-over support with mod_webapp

2001-12-18 Thread costinm
Hi Mathias, Maybe you could contribute some docs, you seem very familiar with the subject ! Code would be even better :-) In jk2 it should be possible for 'callbacks' to change anything, and all the information about lb is exposed in accessible structures ( private data has been greatly reduced

DO NOT REPLY [Bug 5490] New: - references to non-existant URL's cause tomcat to hang

2001-12-18 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT . ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE. http://nagoya.apache.org/bugzilla/show_bu

Re: Load balancing - fail-over support with mod_webapp

2001-12-18 Thread Mathias Herberts
Hi, I have been working on load balancing Apache/Tomcat clusters. In mod_jk, the fail-over is done in the function get_most_suitable_worker. Basically if the worker who initiated the session is available (i.e. not in error state), use it, otherwise loop through the workers and select either the o

DO NOT REPLY [Bug 4564] - request.getRemoteAddr() and AccesLog not working

2001-12-18 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT . ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE. http://nagoya.apache.org/bugzilla/show_bu

DO NOT REPLY [Bug 5479] - HttpRequest.getRemoteAddr() returns localhost invoking a jsp or servlet directly, without a connected web server

2001-12-18 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT . ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE. http://nagoya.apache.org/bugzilla/show_bu

cvs commit: jakarta-tomcat-4.0/webapps/tomcat-docs jndi-resources-howto.xml

2001-12-18 Thread remm
remm01/12/18 10:17:44 Modified:webapps/tomcat-docs jndi-resources-howto.xml Log: - Fix typos in example. Submitted by Janek Bogucki Revision ChangesPath 1.11 +3 -3 jakarta-tomcat-4.0/webapps/tomcat-docs/jndi-resources-howto.xml Index: jndi-resourc

DO NOT REPLY [Bug 5489] New: - Typos in example

2001-12-18 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT . ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE. http://nagoya.apache.org/bugzilla/show_bu

DO NOT REPLY [Bug 5488] New: - Parser error with language encoding Cp1252

2001-12-18 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT . ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE. http://nagoya.apache.org/bugzilla/show_bu

Re: cvs commit: jakarta-tomcat-connectors/webapp/java WarpConnector.java

2001-12-18 Thread Remy Maucherat
> Ah! That is why it stops building against 4.0.1 ;-( That's a backward compatible change, and it's very low impact. If you add the method, it will still build with 4.0, 4.0.x, and the HEAD branch. Remy > [EMAIL PROTECTED] wrote: > > > > remm01/11/30 23:20:29 > > > > Modified:weba

Load balancing - fail-over support with mod_webapp

2001-12-18 Thread Tom Drake
I have two questions about mod_webapp and/or mod_jk. But first a little background: Most of you know that I'm working on a distributed session management solution the purpose for which is to provide fail-over capability in the context of a load balanced environment. By fail-over, I mean that

Ever increasing heap size with Tomcat 3.2.3 !!!

2001-12-18 Thread Hawkins, Keith (Keith)
Hello, Before my manager insists that we switch to JRun, can any of the Tomcat developers help with a problem of an ever increasing heap size of the Tomcat java.exe. ?? (We are running Tomcat 3.2.3 and JRE1.3.1. and the IIS redirector) We are running a load test using LoadRunner scripts on so

Netbeans/tomcat work around for unavailable source code problem while trying to debug servlets

2001-12-18 Thread William Pennoyer
In June David Karr wrote that he was unable to debug Servlets with Netbeans while the debugger could not find the source code - "unavailable source file". I have circumvented this problem on windows by using the SUBST command. After following the instructions listed at http://www.netbeans.org/art

DO NOT REPLY [Bug 5487] - Jasper does not recognize end tags with trailing spaces

2001-12-18 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT . ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE. http://nagoya.apache.org/bugzilla/show_bu

DO NOT REPLY [Bug 5487] New: - Jasper does not recognize end tags with trailing spaces

2001-12-18 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT . ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE. http://nagoya.apache.org/bugzilla/show_bu

DO NOT REPLY [Bug 5486] - Standard EA3 Taglib import does not work with if-modified-since http header field

2001-12-18 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT . ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE. http://nagoya.apache.org/bugzilla/show_bu

DO NOT REPLY [Bug 5486] - Standard EA3 Taglib import does not work with if-modified-since http header field

2001-12-18 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT . ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE. http://nagoya.apache.org/bugzilla/show_bu

DO NOT REPLY [Bug 5486] - Standard EA3 Taglib import does not work with if-modified-since http header field

2001-12-18 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT . ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE. http://nagoya.apache.org/bugzilla/show_bu

DO NOT REPLY [Bug 5486] New: - Standard EA3 Taglib import does not work with if-modified-since http header field

2001-12-18 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT . ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE. http://nagoya.apache.org/bugzilla/show_bu

Re: cvs commit: jakarta-tomcat-connectors/webapp/java WarpConnector.java

2001-12-18 Thread jean-frederic clere
Ah! That is why it stops building against 4.0.1 ;-( [EMAIL PROTECTED] wrote: > > remm01/11/30 23:20:29 > > Modified:webapp/java WarpConnector.java > Log: > - Add the findLifecycleListeners method, so that webapp builds against the > HEAD of the CVS. > > Revision Change

DO NOT REPLY [Bug 5484] - ClassNotFoundException on shutdownhook thread

2001-12-18 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT . ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE. http://nagoya.apache.org/bugzilla/show_bu

cvs commit: jakarta-tomcat-4.0/catalina/src/share/org/apache/catalina/startup Catalina.java

2001-12-18 Thread remm
remm01/12/18 07:50:28 Modified:catalina/src/share/org/apache/catalina/startup Catalina.java Log: - Bug 5484 mentioned a shutdown hook, and that reminded me that Catalina doesn't set one which could be used to try to do a clean shutdown of the server when the process is k

DO NOT REPLY [Bug 5484] - ClassNotFoundException on shutdownhook thread

2001-12-18 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT . ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE. http://nagoya.apache.org/bugzilla/show_bu

DO NOT REPLY [Bug 5484] New: - ClassNotFoundException on shutdownhook thread

2001-12-18 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT . ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE. http://nagoya.apache.org/bugzilla/show_bu

DO NOT REPLY [Bug 5483] New: - I18N fails using AJP 1.3 with Tomcat 4.01 final / Apache 1.3.22

2001-12-18 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT . ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE. http://nagoya.apache.org/bugzilla/show_bu

tomcatctl

2001-12-18 Thread Stephan Sann
Hello List, I was told to post this into a appropriate Tomcat mailing list and I think this should be the right one. I wrote a little script which may be interesting for the tomcat-project. It is based on the file "apachectl" and this is what it is about: When I installed tomcat on my Server I

DO NOT REPLY [Bug 5479] New: - HttpRequest.getRemoteAddr() returns localhost invoking a jsp or servlet directly, without a connected web server

2001-12-18 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT . ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE. http://nagoya.apache.org/bugzilla/show_bu

RE: Configuring Multiple Tomcat JVMs with Apache - Load Balancing

2001-12-18 Thread GOMEZ Henri
Session afinity is often mandatory when in situations where parts of applications are not just data, ie when your web-application is used to discuss with a real-time system requiring that all the app session came from the same JVM. And so the session afinity must be configurable. - Henri Gomez

AW: Configuring Multiple Tomcat JVMs with Apache - LoadBalancing - Attributes

2001-12-18 Thread Lauer, Oliver
Tom, I understand, looks pretty :-) You state "Apache solution can be implemented without concern for this". What kind of connector will be supported mod_jk or mod_webapp ? Oliver > AXA eSolutions GmbH > AXA Konzern AG Germany > Oliver Lauer > Web Architect > Wörthstraße 34 > D-50668 Köln >

Patch for bad Implementation of the session serialization mechanism

2001-12-18 Thread Oto Buchta
Hi, I've download tomcat 4.0.1 and I have the great problem with sessions, when I've uncommented the Session Manager. If I use configuration in server.xml, all active sessions are filled with the old stored values each one minute. Why? The bug is allowed by stupid i