Re: Ant install tasks

2003-12-08 Thread Remy Maucherat
Robert D. Abernethy IV wrote: I was getting this same error and it took me some time to get around it. First, I decided to use a WAR file to deploy, rather than an unpacked directory. Second, I had to comment out the jasper2 task in the compile target because it was messing up my web.xml file in

Re: TC 4 -oreillyMultipart- TC5: Corrupt form data: premature ending

2003-12-05 Thread Remy Maucherat
Dirk Griesbach wrote: Rémy, how would you have done it ? Maybe there can be applied a fix to it. You could add a sys.out in their readLine() method to see what is actually being read :) -- x Rémy Maucherat Senior Developer Consultant JBoss Group (Europe) SàRL

Re: TC 4 -oreillyMultipart- TC5: Corrupt form data: premature ending

2003-12-05 Thread Remy Maucherat
Shapira, Yoav wrote: Howdy, If I were you, Senor Griesbach, I would dump COS in favor of jakarta commons fileupload instead of spending significant time debugging intricate input stream problems... But that's just me, and I'm not a patient debugger ;) What cos is doing is bad IMO (it should read

Re: What is jakarta-tomcat-5.0.16-embed.zip ?

2003-12-05 Thread Remy Maucherat
Shapira, Yoav wrote: Howdy, People who want to embed tomcat in their own applications, e.g. JBoss developers ;) It was created (by Costin) to: - test and debug JMX startup - improve embeddability - because some people wanted a smaller distribution (and the old LE wasn't actually useful, except to

Re: [TOMCAT] 5.0.16

2003-12-05 Thread Remy Maucherat
Schalk wrote: Derek My JAVA_HOME points to j2sdk1.4.2/lib/tools.jar No, it should point to the base path of the JDK (ex: c:\j2sdk1.4.2). -- x Rémy Maucherat Senior Developer Consultant JBoss Group (Europe) SàRL x

Re: TC 4 -oreillyMultipart- TC5: Corrupt form data: premature ending

2003-12-04 Thread Remy Maucherat
Shapira, Yoav wrote: Howdy, Another issue came up comparing TC4 and TC5: using the oreilly multipart lib on TC5 causes the error ...Corrupt form data: premature ending on POST uploads. As stated in the FAQ's at http://www.servlets.com/cos/faq.html this problem is merely due to the webcontainer

Re: TC 4 -oreillyMultipart- TC5: Corrupt form data: premature ending

2003-12-04 Thread Remy Maucherat
Dirk Griesbach wrote: Rémy, I had a look into the sources. There it reads: class MultipartParser: do { String line = readLine(); if (line == null) { throw new IOException(Corrupt form data: premature ending); } (:-) By which method should

Re: TC 4 -oreillyMultipart- TC5: Corrupt form data: premature ending

2003-12-04 Thread Remy Maucherat
Dirk Griesbach wrote: Rémy, this copy is of type javax.servlet.ServletInputStream.readLine() acquired by HttpServletRequest.getInputStream(); Would you agree that this is a good idea ? Are you sure ? There's a ServletIS.readLine(byte[] b, int off, int len) method, but no readLine

Re: TC 4 -oreillyMultipart- TC5: Corrupt form data: premature ending

2003-12-04 Thread Remy Maucherat
Dirk Griesbach wrote: Rémy, I'm quite sure. With a summary of oreilly´s sources I see: class MultipartParser { ... private ServletInputStream in; private byte[] buf = new byte[8 * 1024]; ... ServletInputStream in = req.getInputStream(); ... do { String line = readLine(); if (line ==

Re: Upgrade from 4.1.29 to 5.0.16, logging is too verbose?

2003-12-04 Thread Remy Maucherat
Ryan Cornia wrote: I was running tomcat 4.1.29 with a log4j jar in the $CATALINA_HOME/common/lib folder and a log4j.properties file in $CATALINA_HOME/common/classes folder. This worked fine, and kept the log messages at the level I wanted them. When I installed 5.0.16, I put the log4j jar and

Re: Tomcat 5.x and JBoss

2003-12-03 Thread Remy Maucherat
J.L. wrote: Hi, I want to use JBoss 3.2.2 and Tomcat 5.0.14. The problem is that I have to replace the JBoss embedded Tomcat, by the 5.0.14 version (I need local access between servlets and EJBs). I have heard I can do that by recompiling JBoss with Tomcat 5.0.14, but I have no idea how to do

Re: Best JVM for Tomcat

2003-12-03 Thread Remy Maucherat
Vic Cekvenich wrote: I use BEA's jRockit (but with tomcat 5) on Fedora. How does this work ? I've had trouble with jRockit on Linux, plus there's the new Posix threads reportedly causing problems. Maybe Fedora + new JRockits would help, but hard data would be useful. Are you using TC standalone

[ANN] Apache Tomcat 5.0.16 Stable released

2003-12-03 Thread Remy Maucherat
The Tomcat Team announces the immediate availability of Apache Tomcat 5.0.16 Stable. Please refer to the changelog for the list of changes. Downloads: Binaries: http://jakarta.apache.org/site/binindex.cgi Sources: http://jakarta.apache.org/site/sourceindex.cgi The Apache Tomcat Team

Re: deployment quirk in Tomcat5. Bug?

2003-12-02 Thread Remy Maucherat
Jacob Kjome wrote: When deploying war files in Tomcat-5.0.16, I noticed something a little odd. After using the ant manager deploy task and then doing an undeploy, manually dropping the war file into CATALINA_HOME/webapps trigger auto-deployment. For example, say I have myapp.war. I just drop

Re: GZIP-encoding/mod_gzip and Tomcat??

2003-11-30 Thread Remy Maucherat
Ron Andersen wrote: Thanks! I was reading the Wrox's Professional Tomcat book and it states that Tomcat's web servers does not support Virtual Hosts. Does it now support Virtual Hosts? The book is wrong: even Tomcat 4.0 supported vhosts. -- x Rémy Maucherat Senior

Re: tomcat stats and performances

2003-11-24 Thread Remy Maucherat
[EMAIL PROTECTED] wrote: Hi to all, I have two questions. We have Tomcat as server for a struts web application. First, don't crosspost. Thanks. - We need do stats for that web application, stats like what pages user enter, who user enter more to the application, performance stats ... I have

Re: When is Tomcat 5 Release version scheduled to come out?

2003-11-22 Thread Remy Maucherat
Antonio Fiol Bonnín wrote: Hello, I'll begin from the end... I did not present evidence, that is true, but I explained the symptoms. I tested three configurations: 1 Apache + 1 Tomcat;1 Apache + 2 Tomcat;1 Apache + 3 Tomcat All three gave me very similar performance results.

Re: tomcat 4.1.29 and static content in non Latin (ISO-8895-1) characters

2003-11-18 Thread Remy Maucherat
Galbayar wrote: Hi I have same problem. If you change apache httpd.conf file AddDefaultCharset windows-1251 static data has to be seen Cyrillic. However it is very bad solution:-) For a real fix, you can apply a patch to the Tomcat code: Index: Response.java

Re: Windows 98 me Tomcat 5.0.12

2003-11-18 Thread Remy Maucherat
Colin McGuigan wrote: Hello, I wonder if anyone could help me. I have installed Tomcat 5.0.12 on my pc. It uses Microsoft 98 ME, is a PIII 866 and has 384 RAM. I have also installed j2sdk1.4.1_05. When I start Tomcat, the image with Apache Tomcat appears for a second or two and the Tomcat image

Re: Tomcat Settings and Performance

2003-11-14 Thread Remy Maucherat
Jonathan Holloway wrote: Dear All, I wonder if anyone could help with the following. I'm currently using Tomcat to host a multiple choice test system. I have between 100 - 200 people logging into tomcat and sitting a test almost simultaneously when instructed to by the test supervisor. Does

Re: Number of instances with SingleThreadModel

2003-11-14 Thread Remy Maucherat
cyril vidal wrote: Hi, These infos are useful but have nothing to deal with my initial question;-)) So, I ask it again, if some people know about THIS subject: is it possible in Tomcat's configuration to specify the number of servlet instances created when this servlet implements the

Re: Issue with Tomcat 4.1.29 default Character Encoding

2003-11-12 Thread Remy Maucherat
[EMAIL PROTECTED] wrote: Hi All, We are having an issue with the latest version of Tomcat and how the Content Type header is being set by it now - in particular with PDFs generated by our application. The following is taken straight from the RequestDumperValve: OLD (Tomcat 4.1.24) 2003-11-11

Re: java.util.zip.ZipException while using the ant install target

2003-11-10 Thread Remy Maucherat
Rainer Stransky wrote: On Sunday 09 November 2003 23:53, Rainer Hoeckmann wrote: I found that my build.xml was using the deployTask instead of installTask to implement the ant install command. After changing this it went possible to install my application to Tomcat. Now I'm wondering where the

Re: Tomcat 5.0.14: error in opening zip file

2003-11-08 Thread Remy Maucherat
Gerry Reno wrote: Don't know whether this has any bearing on the problem but the war file was built and deployed using maven. - First, make sure you have a $CATALINA_HOME/temp or $CATALINA_BASE/temp folder - Please post your full stack trace, it may be useful - How can this problem be

Re: HTTP response header displayed for JSP

2003-11-05 Thread Remy Maucherat
Howard Lin wrote: When trying to fetch a simple JSP page, the following header displayed on the browser (IE 6.0 on WinXP): HTTP/1.1 200 OK Content-Type: text/plain;charset=ISO-8859-1 Content-Length: 2183 Date: Wed, 05 Nov 2003 19:42:16 GMT Server: Apache Tomcat/4.1.29-LE-jdk14 (HTTP/1.1

Re: Installing jakarta on linux RH9

2003-11-04 Thread Remy Maucherat
Christopher Schultz wrote: All, The newest version (4.1.29) should be fine. If I recall, however, there was a problem with Sun's Java Virtual Machine, and RH9, which used an incompatible threading library. No, on RH 9, all VMs will actually need the LD_ASSUME_KERNEL env variable (look in

Re: Installing jakarta on linux RH9

2003-11-03 Thread Remy Maucherat
Nathan Mcminn wrote: The newest version (4.1.29) should be fine. If I recall, however, there was a problem with Sun's Java Virtual Machine, and RH9, which used an incompatible threading library. No, on RH 9, all VMs will actually need the LD_ASSUME_KERNEL env variable (look in the archives for

Re: Tomcat 5.0.14 Beta

2003-11-01 Thread Remy Maucherat
Matt Raible wrote: I just upgraded from Tomcat 5.0.12 Beta to 5.0.14 yesterday. Everything's been running fine for the last 12 hours, and then I got the following error this morning: No Java compiler was found to compile the generated source for the JSP. This can usually be solved by copying

Re: [ANN] Apache Tomcat 4.1.29 Stable and Apache Tomcat 5.0.14 Beta released

2003-10-31 Thread Remy Maucherat
Vic Cekvenich wrote: I speak for many: THANK YOU You're welcome :) Hopefully 4.1.29 will be a good release. -- x Rémy Maucherat Senior Developer Consultant JBoss Group (Europe) SàRL x

[ANN] Apache Tomcat 4.1.29 Stable and Apache Tomcat 5.0.14 Beta released

2003-10-31 Thread Remy Maucherat
The Tomcat Team announces the immediate availability of Apache Tomcat 4.1.29 Stable and Apache Tomcat 5.0.14 Beta. Please refer to the changelog for the list of changes. Downloads: Binaries: http://jakarta.apache.org/site/binindex.cgi Sources: http://jakarta.apache.org/site/sourceindex.cgi The

Re: Tomcat 5 JBoss

2003-10-28 Thread Remy Maucherat
[EMAIL PROTECTED] wrote: Is there any way to run JBoss with Tomcat 5 instead of 4.1.27? I'm using JBoss 3.2.2. I would like to switch to 5 because of the hotswap debugging feature. You have to get the source, and build. There will be a TC 5 SAR in the output dir for the Tomcat module. Using it

Re: Tomcat stops handling HTTP connections, socket is SYN_RECV

2003-10-27 Thread Remy Maucherat
[EMAIL PROTECTED] wrote: On Fri, Oct 24, 2003 at 16:01:48 +0200, [EMAIL PROTECTED] wrote: When everything quiets down, tomcat seems to be unable to service any http requests. Any attempt to connect to port 10003 with a web browser eventually causes a No data in response-style error message. At

Re: IMP:Problem migrating to Latest Tomcat 5

2003-10-27 Thread Remy Maucherat
Paresh Varatkar wrote: Hi Remy Two questions 1 where Can I get the binary install for 5.0.14. http://mir2.ovh.net/ftp.apache.org/dist/jakarta/tomcat-5/v5.0.14-alpha/ (or another mirror) 2 Also do you think its possible to move the application from Tomcat to jboss easily. That's the idea :)

Re: IMP:Problem migrating to Latest Tomcat 5

2003-10-25 Thread Remy Maucherat
Paresh Varatkar wrote: Found out thwe problem. One of our class is making hard coded refernce to resources that is creating trouble in deploying the application. One more problem though. I am trying to start Tomcat as service. It starts and stops immediately saying The apache service on computer

Re: embedded tomcat 5

2003-10-21 Thread Remy Maucherat
Mark W. Webb wrote: could you please give more information on the JMX way. thanks http://apache.crihan.fr/dist/jakarta/tomcat-5/v5.0.12-beta/bin/jakarta-tomcat-5.0.12-embed.tar.gz -- x Rémy Maucherat Senior Developer Consultant JBoss Group (Europe) SàRL

Re: tomcat jitters, then hangs - please help

2003-10-20 Thread Remy Maucherat
Noam Camiel wrote: Hi folks, A week's gone by and all seems fine. Server is stable and working properly. Thanks for all who helped out! Ryan, Remi Yoav and Arthur, many thanks. It may be a good idea to document this for others who may stumble over this problem. All the best Noam Camiel Details:

Re: Tomcat4 denial of service in debian...

2003-10-16 Thread Remy Maucherat
Dan K. wrote: Yoav, So then if there is a DoS vulnerability in the normal jakarata tomcat 4.0.x distributions, would the developers consider that important enough to be looked at/fixed? I'm just trying to figure out whether the vulnerability in the debian tomcat would affect the normal jakarta

Re: TC5 ssl form-based authentication mozilla

2003-10-15 Thread Remy Maucherat
Adam Hardy wrote: I have set this up with the minimum configuration possible to try to find the problem. 1 JSP, one Struts action mapping, 1 servlet mapping, and the tomcat realm - no SSO, no filters, no templates, no SSL-redirection. With this security: web-resource-collection

Re: tomcat jitters, then hangs - please help

2003-10-15 Thread Remy Maucherat
Shapira, Yoav wrote: Howdy, Cool, please keep us updated ;) I want these linux questions better documented in the list archives ;) Given that RH 9 / HTTP/1.1 seems a fairly common configuration, this should be added to the known issues and the FAQ if confirmed. Since there are three options, I

Re: Strange tomcat behavior

2003-10-09 Thread Remy Maucherat
[EMAIL PROTECTED] wrote: Hi everybody on the list! We observed a strange tomcat behavior (tomcat 4.1.24) while running a servlet: Everything works fine some days or even weeks. Suddenly (and at random time) tomcat throws the following exceptions: 2003-10-08 11:44:48 CoyoteAdapter An exception or

Re: tomcat jitters, then hangs - please help

2003-10-09 Thread Remy Maucherat
Arthur Veinstein wrote: Noam, I suspect that the tomcat doesn't hangs but rather you reach the max TCP connection that your server accepts. The best will be to write a small program you run by calling a servlet which write to the output I'm a live every 10 min. Run the program after you restart

Re: tomcat jitters, then hangs - please help

2003-10-09 Thread Remy Maucherat
Noam Camiel wrote: On Thursday, October 09, 2003 5:11 PM Ryan Lissack [EMAIL PROTECTED] wrote: Hi Noam, We have experienced similar problems. You will notice in the thread dump that there is no thread from the connectors thread pool waiting on an accept I see your what you mean, I compared the

Re: Tomcat 5.0.12, Windows, and file pathnames

2003-10-08 Thread Remy Maucherat
Derek Mahar wrote: Is it the responsibility of Tomcat, the application running on Tomcat, or Java to translate or resolve Windows file paths? If it is Tomcat, does Tomcat 5.0.12 translate or resolve these pathnames correctly? VQWiki (http://www.croninsolutions.com/veryquickwiki/), a JSP Wiki

Re: Tomcat 5.0.12, Windows, and file pathnames

2003-10-08 Thread Remy Maucherat
Derek Mahar wrote: Yes, the Linux Tomcat installation has no spaces in its installation path (/usr/local/jakarta-tomcat-5.0.9), but the Windows Tomcat installation path does (C:\Program Files\Apache Software Foundation\Tomcat 5.0). Why cannot Tomcat on Windows handle these spaces? Is URL

Re: Tomcat hanging!! About to change container!! Please help!!

2003-10-05 Thread Remy Maucherat
David Rees wrote: On Fri, October 3, 2003 at 1:02 pm, Remy Maucherat sent the following Interesting stuff about the logger. Anyway, in the dump, there's, as usual, only one connector listening on its server socket. And, as usual, it is Sun JDK 1.4.1 or 1.4.2 on Linux. I think there are way too

Re: Tomcat hanging!! About to change container!! Please help!!

2003-10-05 Thread Remy Maucherat
David Rees wrote: On Sun, October 5, 2003 1at 2:44 am, Remy Maucherat sent the following If there's a clear confirmation of this, a recommendation not to use Sun JDKs on Linux would be added in the release notes. I can't say I agree with this as I have about half a dozen machines running Tomcat

Re: Expected date for 4.1.28?

2003-10-03 Thread Remy Maucherat
Shapira, Yoav wrote: Howdy, Also keep in mind that 4.1.28, like any other release, could have regression bugs ;) You'd have to test on it anyhow before going to production and finishing documentation. Unless you really need a fix from 4.1.27, you could just stick to 4.1.24 without a hotfix.

Re: Tomcat hanging!! About to change container!! Please help!!

2003-10-03 Thread Remy Maucherat
Shapira, Yoav wrote: Howdy, Oh, interesting... Thread-2 daemon prio=1 tid=0x084201a0 nid=0x223b waiting on condition [4e08..4e080714] at java.io.PrintWriter.print(PrintWriter.java:375) at java.io.PrintWriter.println(PrintWriter.java:515) - locked 0x44a33ae0 (a

Re: tomcat jitters, then hangs - please help

2003-10-01 Thread Remy Maucherat
Shapira, Yoav wrote: Howdy, At that time, if you send the VM a SIGQUIT, what are the threads doing? I've got a thread dump at the end of the file. Please have a look and tell me if you see something odd. It seems you also have a JK connector setup: let's try to reduce the variables by

Re: cannot compile jsps with tomcat 5

2003-09-25 Thread Remy Maucherat
teknokrat wrote: I just tried running my webapp with the latest release of tomcat 5 (5.0.12). Added my context to bin/catalina/localhost and changed CATALINA_HOME. The app loads fine but it refuses to compile any of the jsps. This could be a struts/tiles issue. The sample jsp/servlet examples

Re: running tomcat on port 443 as non-root

2003-09-24 Thread Remy Maucherat
Damian Egli wrote: Hello I have to run Tomcat standalone as user e.g tomcat (non-root) on port 443. But the server doesn't start (not able to bind port 443). With 8443 everything works fine. Why can't tomcat do that like apache ? Because Java wasn't designed to allow that. There are solutions

Re: Using Digester in a Tomcat project causes server not to start ?

2003-09-22 Thread Remy Maucherat
Kruse, Matt wrote: What tomcat version? I've tried 4.1.27 and 5.0.9 with the same results. Where's the digester jar that ships with tomcat? c:\tomcat\server\lib\commons-digester.jar You can't have more than one digest jar in the classloader hierarchy. So keep yours in WEB-INF/lib and make

[ANN] Apache Tomcat 5.0.12 Beta released

2003-09-22 Thread Remy Maucherat
The Tomcat Team announces the immediate availability of Apache Tomcat 5.0.12 Beta. Tomcat 5.0 contains many enhancements over Tomcat 4.1, including: * Performance optimizations and reduced garbage collection * Refactored application deployer, with an optional standalone deployer allowing

Re: DefaultServlet throws a LOT of broken pipe exceptions on mp3s

2003-09-18 Thread Remy Maucherat
Chris Rolfe wrote: That's what I thought at first, but this happens 80-90% of the time on the 100k+ files. There are two files on the same page, one 100-200k dialog, and a 10-30k sentence. It seems to me unlikely the users are hitting stop that quickly and that often. These are reasonably fast

Re: Coyote Performance

2003-09-18 Thread Remy Maucherat
David Morris wrote: I did some profiling of a slow page (Struts based) on a site using the Coyote connector. This site does not use Apache. It appeared that a java.net.SocketInputStream.read being invoked from org.apache.coyote.http11.InternalInputBuffer.parseRequestLine() was causing a

Re: Coyote Performance

2003-09-18 Thread Remy Maucherat
Mike Curwen wrote: In exactly what manner was David completely wrong? In his identification of the bottleneck? In identifying the old connector as faster? Or is there a fundamental mistake in his whole post? Well, the different is so huge, it is not consistent at all with any measurement I've

Re: Tomcat, MySQL JNDI: java.sql.SQLException: Cannot load JDBC driver class 'null'

2003-09-15 Thread Remy Maucherat
Ilja Hehenkamp wrote: I think I know where lies the problem, however I still don't know how to fix it... I use the sample build.xml file from Tomcat: http://jakarta.apache.org/tomcat/tomcat-5.0-doc/appdev/build.xml.txt to install, reload and distribute my sample application. When I do an ant

Re: Tomcat, MySQL JNDI: java.sql.SQLException: Cannot load JDBC driver class 'null'

2003-09-15 Thread Remy Maucherat
Ilja Hehenkamp wrote: Sorry, I don't really understand what you mean? Do you mean I shouldn't use the build file anymore? If so: that's too bad, since I like the way of automated updating the tomcat manager... I'm sure you do. You seem to be stuck on that particular page of the docs, however,

Re: Tomcat 4.1 - 5.0 Web-app Porting

2003-09-15 Thread Remy Maucherat
[EMAIL PROTECTED] wrote: I'm using Tomcat 5.0.11. I still don't understand how this works with Tomcat 4.1 and not 5.0. I thought 5.0 was backwards compatible. Besides, struts' tags are very popular (htmlbean etc.). If 5.0 were somehow not compatible with these tags, we would hear more complaints

Re: Tomcat 4.1 - 5.0 Web-app Porting

2003-09-15 Thread Remy Maucherat
[EMAIL PROTECTED] wrote: Here's my entire index.jsp. What would you change to make it work with Tomcat 5.0? It seems to works fine with 4.1. Yes, I'm sure it does work fine with 4.1. Coincidentally, it also works fine for me in 5.0. It works for me with both pooling enabled and disabled (you can

[5.0.12] New alpha build

2003-09-15 Thread Remy Maucherat
A new alpha test build has been released. The most important changes are fixes and improvements in the HTTP connector. Please test it. Downloads: http://jakarta.apache.org/site/binindex.cgi Remy - To unsubscribe, e-mail:

Re: Tomcat 5 clustering

2003-09-10 Thread Remy Maucherat
Filip Hanik wrote: for software, balance.sourceforge.net is excellent There are no docs at all, but I was wondering about that project. Does it do session affinity ? Can you give more details since you've been using it ? -- x Rémy Maucherat Senior Developer

Re: Tomcat 5.0.9 appBase and docBase questions...

2003-09-09 Thread Remy Maucherat
Richard Norman wrote: I have a question and I have looked all through the documentation and have not found the solution. Firstly I wanted to know if there is a source to go to about using Tomcat 5.0.9 with IIS on Windows. Particularly the JK2 connector and ISAPI connector? If not, then is

Re: Tomcat 5.0.9 appBase and docBase questions...

2003-09-09 Thread Remy Maucherat
Richard Norman wrote: Thanks for the timely response.. I've been scratching my head over this for the past day and a half thinking I am just not getting this right. Are there any other active gotcha's I need to watch out for? I am using this for testing and some getting my feet wet work in JSP

Re: Tomcat 5 clustering

2003-09-09 Thread Remy Maucherat
Cendil wrote: I am trying to get clustering working with Tomcat 5.0.9 and am finding a few problems. I have uncommented the cluster section and the recommended valve to filter requests for static content, so the cluster section in the host section of server.xml looks like this: Cluster

Re: Tomcat 5 clustering

2003-09-09 Thread Remy Maucherat
Cendil wrote: Setting distributable=true on the Context element in server.xml didn't work, but I noticed I had missed out the distributable element in the web.xml. Added is, and all works fine. Sorry, the code had changed since last time I did anything for that feature (maybe 6 months ago).

Re: Tomcat 5 clustering

2003-09-09 Thread Remy Maucherat
Jan Agermose wrote: I'm not using version 5 but was looking for information on what clustering capabilities that where build into tomcat 5 - but I cannot find anything on the webpage... looking in the wrong places :-) Could you offer any links? Is it simply a distributed session implementation

[5.0.11] New alpha build

2003-09-08 Thread Remy Maucherat
I have released a new alpha test build, with, among others, a fix for the commons-logging classloading issues that were present in previous 5.0.x releases. Please test it. Downloads: http://jakarta.apache.org/site/binindex.cgi I'll post a vote on the build tomorrow. Remy

Re: Tomcat 4.1.24 Coyote Connector hangs

2003-09-05 Thread Remy Maucherat
[EMAIL PROTECTED] wrote: Hi, Our Tomcat instances are configured to use two Coyote Connectors, one for requests from our SSL accelerator and the other for standard HTTP requests. We are experiencing problem where after a period of time, anything from 10 minutes to a few days, one of the

Re: $CATALINA_HOME/shared/lib is *STILL* Ignored....

2003-09-04 Thread Remy Maucherat
Tony LaPaso wrote: Hi all, I posted a similar question a couple days ago but it seems the well-intended responses I received were incorrect. And let me first say that I have RTFMs -- more than once -- and this *SHOULD* work, at least according to TFMs. I'm using TC v5.0.9 on Linux with J2SE

Re: Apache Tomcat Performance Handbook

2003-09-04 Thread Remy Maucherat
John Turner wrote: The book was never published. The original publisher (Wrox) went out of business and liquidated assets. The rights to the performance handbook (and many other former Wrox titles including the security handbook) were picked up by Apress. The rights to the rest were picked

Re: Problem in tomcat-5.0-doc/setup.html

2003-09-03 Thread Remy Maucherat
Damien wrote: Hi, I've downloaded tomcat (jakarta-tomcat-5.0.9.tar.gz) and I'm following the instructions found in this page : http://jakarta.apache.org/tomcat/tomcat-5.0-doc/setup.html There is a little error that might confuse beginners : cd $CATALINA_HOME/bin tar xvfz jsvc.tar.gz cd

Re: File upload Bug?

2003-09-03 Thread Remy Maucherat
Tom Lyle wrote: I've just realised something. The machine thats running Tomcat 4.1.27 is serving the pages with IIS and isapi_redirector2.dll, when i connect directly to Tomcat via port 8080 it works fine. Right, i've just searched the archives and found 2 people posting (much more elequently)

Re: Autodeploy to false, but still happening?

2003-09-02 Thread Remy Maucherat
Jon Skeet wrote: I should state that I'm pretty new to Tomcat 4, but have used Tomcat 3 for quite a while. In order to prevent the examples web-app from loading (which required the invoker servlet, which I've commented out completely for the moment), I thought I could just set the Host autoDeploy

Re: Problem while installing

2003-09-02 Thread Remy Maucherat
Damien wrote: Hi, I have a problem while installing tomcat. I'm following this instruction : http://jakarta.apache.org/tomcat/tomcat-5.0-doc/BUILDING.txt I have used the last versions of the packages mentionned in this page : j2sdk-1_4_2_01-linux-i586.bin apache-ant-1.5.4-bin.tar.bz2

Re: Problem switching to Struts 1.1

2003-09-01 Thread Remy Maucherat
Marco Tedone wrote: Hi, I posted this issue to the struts-user list 3 times, but noone replied to me and frankly I'm beginning to be a little worried. In few words we have an application which was running fine until struts rc1 but when we switched to Struts 1.1 the following exceptions is thrown:

Re: IllegalStateException - org.apache.coyote.tomcat4.CoyoteRequest.doGetSession()

2003-09-01 Thread Remy Maucherat
[EMAIL PROTECTED] wrote: Hi all, We're running Tomcat 4.1.24 on Win2K sp4. After a few days of use (usually 4-5 days), Tomcat comes to a semi-halt mode and it refuses to process some of the pages. Even the thrown exceptions are not logged. It looks like it's a thread pool related problem because,

Re: Problem switching to Struts 1.1

2003-09-01 Thread Remy Maucherat
Marco Tedone wrote: Thank you for your support. I must say that the privileged attribute for my application was set to false, but the problem still persists. Are you sure ? I did test it with TC 5 (maybe 5.0.5) / Struts 1.1 examples webapp / log4j 1.2.8, and it did work fine (I simply dropped

Re: IllegalStateException - org.apache.coyote.tomcat4.CoyoteRequest.doGetSession()

2003-09-01 Thread Remy Maucherat
[EMAIL PROTECTED] wrote: Thanks for your prompt answer. Please don't get me wrong, I don't want to sound arrogant or something, but how come an error may not indicate a problem. ;-) It indicates there's likely a bug in the app, not in TC (that's what I meant). You can't create a session if the

[ANN] Tomcat 5.0.6 Alpha released

2003-08-04 Thread Remy Maucherat
Tomcat 5.0.6 Alpha is now available for testing. Please refer to the changelog included in the release for the list of changes. Downloads: http://jakarta.apache.org/site/binindex.cgi Remy - To unsubscribe, e-mail: [EMAIL

[ANN] Apache Tomcat 4.1.27 Stable released

2003-07-31 Thread Remy Maucherat
The Tomcat Team announces the immediate availability of Apache Tomcat 4.1.27 Stable. Among other bugfixes and improvements, Tomcat 4.1.27 includes security fixes for: - Improper recycling of SSL client certificates with Coyote JK 2 - Improper handling of invalid content lengths in requests,

[ANN] Tomcat 5.0.5 Alpha released

2003-07-26 Thread Remy Maucherat
Tomcat 5.0.5 Alpha is now available for testing. Please refer to the changelog included in the release for the list of changes. Downloads: http://jakarta.apache.org/builds/jakarta-tomcat/release/v5.0.5-alpha/ Remy - To

[ANN] Tomcat 5.0.4 Alpha released

2003-07-15 Thread Remy Maucherat
Tomcat 5.0.4 Alpha is now available for testing. Please refer to the changelog included in the release for the list of changes. Downloads: http://jakarta.apache.org/builds/jakarta-tomcat/release/v5.0.4-alpha/ Remy - To

[ANN] Tomcat 5.0.3 Alpha released

2003-06-22 Thread Remy Maucherat
Tomcat 5.0.3 Alpha is now available for testing. Please refer to the changelog included in the release for the list of changes. Downloads: http://jakarta.apache.org/builds/jakarta-tomcat/release/v5.0.3-alpha/ Remy - To

[ANN] Apache Tomcat 4.1.24 Stable released

2003-03-22 Thread Remy Maucherat
The Tomcat Team announces the immediate availability of Apache Tomcat 4.1.24 Stable. Tomcat 4.1.24 includes bugfixes and reliability improvements over Tomcat 4.1.18. Please see the release notes for a complete list of the changes. This release addresses the following security issues: - Denial

[ANN] Tomcat 4.1.24 Alpha released

2003-03-19 Thread Remy Maucherat
Tomcat 4.1.24 Alpha is now available for testing. Changes over 4.1.23 include: - Fix for a security issue introduced in 4.1.23. - Robust handling of bad cookies. - Properly commit the response after a forward, sendError, and sendRedirect. - Properly set the context classloader when using JspC.

[ANN] Tomcat 4.1.23 Alpha released

2003-03-17 Thread Remy Maucherat
Tomcat 4.1.23 Alpha is now available for testing. Changes over 4.1.22 include: - Updated releases of all dependencies. - Fix incorrect enumeration of sessions in JDBC store. - Reject decoded URIs which don't start with '/', returning a 400. - Auth request for an empty path (relative to the

[ANN] Tomcat 4.1.22 Alpha released

2003-03-10 Thread Remy Maucherat
Tomcat 4.1.22 Alpha is now available for testing. Changes over 4.1.21 include: - Fix for mangling with JSPC - Fix precompilation with tag libraries packaged in JARs - Fix JDBC store thread safety bug which was causing improper session access The release notes include the full list of changes.

[ANN] Tomcat 5.0.1 Alpha released

2003-03-03 Thread Remy Maucherat
Tomcat 5.0.1 Alpha is now available for testing. This is actually the first real milestone of Tomcat 5, as Tomcat 5.0.0 did not include any new feature over 4.1.x other than the support for Servlet API 2.4 drafts and JSP 2.0 drafts. Tomcat 5.0.1 includes: - improved performance (with

[ANN] Apache Tomcat 4.1.21 Beta released

2003-03-03 Thread Remy Maucherat
The Tomcat Team announces the immediate availability of Apache Tomcat 4.1.21 Beta. Tomcat 4.1.21 includes many bugfixes and performance tweaks over Tomcat 4.1.18. Please see the release notes for a complete list of the changes. Downloads (source and binaries):

[ANN] Tomcat 4.1.21 Alpha released

2003-02-25 Thread Remy Maucherat
Tomcat 4.1.21 Alpha is now available for testing. Changes over 4.1.20 include: - Fix for a nested tag regression in Jasper - Avoid logging client disconnects exception traces The release notes include the full list of changes. Downloads:

[ANN] Tomcat 4.1.20 Alpha released

2003-02-12 Thread Remy Maucherat
Tomcat 4.1.20 Alpha is now available for testing. Changes over Tomcat 4.1.19 include: - Fix classloading failures when using Tomcat in JNI mode with JK 2 - Upgrade to Xerces 2.3.0 - Admin webapp fixes (including fixes to saving to server.xml) - Disable recycling of sessions - Refactoring of

Tomcat 4.1.19 Alpha released

2003-01-15 Thread Remy Maucherat
Tomcat 4.1.19 Alpha is now available for testing. Changes over Tomcat 4.1.18 include: - Refactored manager and deployer - Fix for a SSL related bug - Jasper will now launch javac in a separate JVM, in order to avoid problems such as memory leaks and file locking - New printer frindly

Re: SSL hangs on Tomcat 4.1.18

2003-01-01 Thread Remy Maucherat
Carl Zetterberg wrote: Xiaojian Wang of infowisesys.com writes: After starting Tomcat , open a navigator to visit any page,then press F5 to fresh.After a few minutes,a message accured: All threads are busy, waiting. Please increase maxThreads or check the servlet status75 75 75 is the

Re: mysterious parse exception on startup

2003-01-01 Thread Remy Maucherat
Joseph Shraibman wrote: If I put the latest xerces and xalan in tomcat/common/endorsed, I get the following error on startup. I don't get this with the xerces/xalan that comes with jdk 1.4.1. What is causing this? What *file* is this? Starting service Tomcat-Apache Apache

Re: reducing tomcat jasper memory footprint

2002-12-30 Thread Remy Maucherat
Paul Yunusov wrote: On Monday 30 December 2002 02:37 pm, Julian Löffelhardt wrote: Hi, I'm using Apache 1.3.26 and 3 tomcat 4.0.4 instances with AJP13 loadbalancing . Our application is a CMS where all the published articles are generated offline as JSP-Files, one jsp per article. We had

Re: SSL hangs on Tomcat 4.1.18

2002-12-29 Thread Remy Maucherat
mech wrote: I was just trying around with minProcessors=1 and maxProcessors=2 Although I get this warnings quite easily (just 2 or 3 browser windows are enough), after one request (really slow) is completed the next request is processed. So obviously the threads must have been reused. If I set

Re: Tomcat stability problem

2002-12-27 Thread Remy Maucherat
Ben Glorie wrote: We're running Tomcat 4.1.12 on a dual-proc PIII with 512MB RAM. The application consists of 100,000+ HTML pages and approx. 100 jsp pages. We get approx. 60,000 page views per day. Performance is fine, but occasionally the system runs into the following problem: - when you

Re: For anyone with unexplainable, unsolvable Tomcat problems (Win32)

2002-12-21 Thread Remy Maucherat
kruger.stephen wrote: Just a quick mail which might help some of you experiencing similar problems. I just spent 3 days solid trying to debug a Servlet which incorporates Jini, into Tomcat 4.1. Not to bug you with the specifics of Jini, but suffice it to say there is some real hairy stuf with

Re: JAVA_HOME problem with 4.1.18

2002-12-20 Thread Remy Maucherat
Ben Ricker wrote: I have this weird problem with setting the JAVA_HOME env variable in Tomcat 4.1.18 (I also had it in 4.1.17). Here is the lines from my startup.sh: CATALINA_HOME=/usr/local/tomcat1-new JAVA_HOME=/usr/local/j2re1.4.1_01 JAVA_OPTS=-ms32m -mx200m export CATALINA_HOME JAVA_HOME

<    1   2   3   4   5   6   7   >