Tomcat 5.5.9 not picking up changes

2005-08-24 Thread MC Moisei
I configured Tomcat 5.5.9 for my development station. I moved from 4.1.30 where the classes where pickup on the fly. (Maybe I shouldn't have moved since all worked so nice) I know things changed since 4.1 but I think I'm doing thing right. In conf folder I defined the context file like below

Re: Tomcat 5.5.9 not picking up changes

2005-08-24 Thread MC Moisei
, 24 Aug 2005 11:54:30 +0530 I use Tomcat 5.0.28 and as per this version, you should add reloadable=true to your context definition for the required behaviour. Rakesh Kumar, Quoting MC Moisei [EMAIL PROTECTED]: I configured Tomcat 5.5.9 for my development station. I moved from 4.1.30 where

RE: 5.5.9 on Ubuntu/Debian

2005-08-21 Thread MC Moisei
Hi, I planning to start using Linux for a new site but a war file that deploys wondeful on Windows won't start on Linux. Here's the first error(see track). I'm using JDK 1.4.2. I'm pretty sure is a rights thing. I'm using the jsvc daemon loaded that switches to tomcat user. Another error is

Re: HELP: Tomcat 5.5.9 with jsvc as low priviledges user on Linux fails in Boots

2005-08-04 Thread MC Moisei
with the attribute readonly=true. Then there will be not write attempt at all. Details under http://issues.apache.org/bugzilla/show_bug.cgi?id=36020 Will be included in 5.5.11 most probably sometime during august. MC Moisei wrote: Hi, I manage to configure my tomcat with jsvc(common-daemon

RE: anonymising Tomcat

2005-08-04 Thread MC Moisei
That a good question Paul. On top of that is there a way to threat/redirect requests to a different application while the requested application is being deployed ? From: Paul Singleton [EMAIL PROTECTED] Reply-To: Tomcat Users List tomcat-user@jakarta.apache.org To: Tomcat Users List

RE: 1 jakarta server + multiple ip's

2005-08-03 Thread MC Moisei
Quick question on this one: So you have an apache2 that fronts tomcat via jk2 connector, are there two instances of tomcat or just one ? If there would be two I'd see the benefits if one is busy the round robin algorithm redistributes the request to the second one. But its only one instance

Tomcat and JDK version

2005-08-03 Thread MC Moisei
Currently I have a tomcat server running with the lastest JDK 1.4.2 (08). I was wondering if any of you that are using JDK1.5(aka Tiger) seen benefits by switching to the newer and supposedly better JDK. On top of that I know that tomcat is suppose to run with the JDK but JRE is suppose to be

RE: mod_jk or jk2??

2005-08-03 Thread MC Moisei
I thought the jk2 is newer... but I can be wrong... MC From: Luis Torres [EMAIL PROTECTED] Reply-To: Tomcat Users List tomcat-user@jakarta.apache.org To: Tomcat Users List tomcat-user@jakarta.apache.org Subject: mod_jk or jk2?? Date: Wed, 03 Aug 2005 13:47:42 -0500 Hello everyone, I see

RE: Tomcat and JDK version

2005-08-03 Thread MC Moisei
: MC Moisei [mailto:[EMAIL PROTECTED] Subject: Tomcat and JDK version On top of that I know that tomcat is suppose to run with the JDK but JRE is suppose to be faster then the JDK because I assume the native code is optimized and all the debugging info in native and in classes are removed

Re: HELP: Tomcat 5.5.9 with jsvc as low priviledges user on Linux fails in Boots

2005-08-02 Thread MC Moisei
Date: Tue, 02 Aug 2005 08:01:36 +0100 MC Moisei wrote: java.io.FileNotFoundException: /usr/local/tomcat/tomcat_home/conf/tomcat-users.xml.new (Permission denied) at java.io.FileOutputStream.open(Native Method) This smells like its calling for write access to the DIRECTORY /usr/local

Re: can I prevent DoS (Denial of Service) Attacks in JSP?

2005-08-02 Thread MC Moisei
I don't is possible because in case of a DoS they first target your web server by making it busy. That can be tomcat but can well be apache. Secondly they can attack you from many ip addresses and that would be pretty harsh, if for example you'd get 1 zillion requests for a larger file/page

HELP: Tomcat 5.5.9 with jsvc as low priviledges user on Linux fails in Bootstrap

2005-08-01 Thread MC Moisei
Hi, I manage to configure my tomcat with jsvc(common-daemon) and everything work great till I start to launch it as root. If I run it as tomcat user it does work great. If I try to run it as root from command prompt or from init.d I get the following exception ( see below ) Right are given

Treating requests while application is deploying...

2005-06-01 Thread MC Moisei
Hi, I was searching thru documentation about this matter but I didn't find an answer yet. I want to display to the end users a default down page, automatically, during deployment. How do I do that ? I assume I'd have to modify the DefaultServlet and it's error handling. Is there a