RE: Heap not expanding beyond -Xms512m

2005-04-20 Thread Quinten Verheyen
I agree, it's always a good idea to let the JVM do what it is supposed to do instead of creating a growing overhead. The only exception to that rule is if you think you'll reach 1024 MB, but as you say yourself, 512 seems to do fine as -Xms. btw, here is an article that goes into detail

RE: Heap not expanding beyond -Xms512m

2005-04-20 Thread Quinten Verheyen
Ooops, I meant -Xmx512 ;) -Original Message- From: Quinten Verheyen Sent: 20 April 2005 15:32 To: 'Tomcat Users List' Subject: RE: Heap not expanding beyond -Xms512m I agree, it's always a good idea to let the JVM do what it is supposed to do instead of creating a growing

odd problem when using a build that calls a build w/ the deploy task

2005-04-18 Thread Quinten Verheyen
Hi, ran into something odd: - buildfile A (build-A.xml) contains deploy task, running the task works w/o any problems : !-- ... -- target name=deploy depends=war deploy url=${tomcat.manager.url} username=${tomcat.manager.username}

RE: odd problem when using a build that calls a build w/ the deploy task

2005-04-18 Thread Quinten Verheyen
Found it, the dist.dir property was set to dist, it should have been set to ${basedir}/dir, all other relative dirs had the latter convention, which explains everything. -Original Message- From: Quinten Verheyen Sent: 18 April 2005 16:43 To: Tomcat Users List Subject: odd problem

how to solve undeploy locking issue

2005-04-15 Thread Quinten Verheyen
Hi, I'm resending this issue, I still have the locked jar situation when executing the catalina undeploy task, it only occurs when my web.xml was pointing to resources in that jar. Temporarily I'm using alternative approaches (overwriting files, catalina stop+start), but they don't guarantee it

RE: Locked jar during Ant undeploy on Tomcat 5.5.3

2005-04-08 Thread Quinten Verheyen
: Quinten Verheyen Sent: 31 March 2005 18:01 To: Tomcat Users List Subject: RE: Locked jar during Ant undeploy on Tomcat 5.5.3 Hi, I'm experiencing a similar problem, I read the Tomcat docs and this thread first before submitting. In my case, on freshly unzipped Tomcat versions 5.0.25

RE: Locked jar during Ant undeploy on Tomcat 5.5.3

2005-04-08 Thread Quinten Verheyen
There have been several locking issues resolved in later versions of Tomcat. (See http://jakarta.apache.org/tomcat/tomcat-5.5-doc/changelog.html.) Does the problem exist on the current level (5.5.9)? - Chuck Yes it does, the following is showing in the tomcat logs : 2005-04-08

RE: Locked jar during Ant undeploy on Tomcat 5.5.3

2005-04-08 Thread Quinten Verheyen
. If I'm right, I won't have to post this issue here anymore ... Regards, Q -Original Message- From: Quinten Verheyen Sent: 08 April 2005 15:40 To: Tomcat Users List Subject: RE: Locked jar during Ant undeploy on Tomcat 5.5.3 There have been several locking issues resolved

RE: URL encoding/decoding of UTF-8 characters

2005-04-06 Thread Quinten Verheyen
Indeed, I had the same problem on 5.0.25 once, use this filter in your web.xml to have UTF-8 encoding for all requests. filter filter-nameencodingFilter/filter-name filter-classfilters.SetCharacterEncodingFilter/filter-class init-param

RE: Locked jar during Ant undeploy on Tomcat 5.5.3

2005-03-31 Thread Quinten Verheyen
Hi, I'm experiencing a similar problem, I read the Tomcat docs and this thread first before submitting. In my case, on freshly unzipped Tomcat versions 5.0.25, 5.0.28 and 5.5.4 the catalina ant task 'undeploy' encounters a locked jar-file situation. I suspect the jar-file is locked because

RE: Authentication - Best practice

2005-01-12 Thread Quinten Verheyen
What's insecure about using a realm ? Security level is dependant on the realm type (e.g. jdbc/jndi can be used to), no ? -Original Message- From: Rajaneesh [mailto:[EMAIL PROTECTED] Sent: 12 January 2005 12:13 To: 'Tomcat Users List' Subject: RE: Authentication - Best practice

RE: Authentication - Best practice

2005-01-12 Thread Quinten Verheyen
data is easily compramised compared to SSL. Please correct me if I am wrong. Regards Rajaneesh -Original Message- From: Quinten Verheyen [mailto:[EMAIL PROTECTED] Sent: Wednesday, January 12, 2005 4:48 PM To: Tomcat Users List Subject: RE: Authentication - Best practice

char encoding bug in tomcat 5.0.25 ?

2004-12-15 Thread Quinten Verheyen
Hi, *maybe* I'm experiencing a bug in Tomcat 5.0.25, but this is pure assumption, please help me with this troublesome character encoding problem. The test page below gets a request parameter and shows it in a textarea. The goal is to test if special characters are translated wrongly .. (would

RE: char encoding bug in tomcat 5.0.25 ?

2004-12-15 Thread Quinten Verheyen
:[EMAIL PROTECTED] Sent: 15 December 2004 10:03 To: Tomcat Users List Subject: RE: char encoding bug in tomcat 5.0.25 ? you-re missing a page directive %@ page contentType=text/html; charset=UTF-8 % -Original Message- From: Quinten Verheyen [mailto:[EMAIL PROTECTED] Sent

RE: char encoding bug in tomcat 5.0.25 ?

2004-12-15 Thread Quinten Verheyen
of such a filter. -Original Message- From: Quinten Verheyen [mailto:[EMAIL PROTECTED] Sent: 15 December 2004 09:16 To: Tomcat Users List Subject: RE: char encoding bug in tomcat 5.0.25 ? I tried that option already, doesn't make a difference .. %@ page pageEncoding=utf-8

RE: char encoding bug in tomcat 5.0.25 ?

2004-12-15 Thread Quinten Verheyen
request encoding on your form post. use a servlet filter. there was a post within the past week where I posted the full code of such a filter. -Original Message- From: Quinten Verheyen [mailto:[EMAIL PROTECTED] Sent: 15 December 2004 09:16 To: Tomcat Users List Subject

RE: char encoding bug in tomcat 5.0.25 ?

2004-12-15 Thread Quinten Verheyen
() - the ServletResponse object's default, ISO-8859-1, is used. -Original Message- From: Quinten Verheyen [mailto:[EMAIL PROTECTED] Sent: 15 December 2004 11:44 To: Tomcat Users List Subject: RE: char encoding bug in tomcat 5.0.25 ? Well, I tested the page

RE: char encoding bug in tomcat 5.0.25 ?

2004-12-15 Thread Quinten Verheyen
and it does btw ;-) -Original Message- From: Quinten Verheyen Sent: 15 December 2004 13:53 To: Tomcat Users List Subject: RE: char encoding bug in tomcat 5.0.25 ? Aha, this explains a lot. I know what to do, one final thing for me before changing to 5.0.28 is testing

RE: setting encoding scheme POST data via container

2004-12-13 Thread Quinten Verheyen
*/ protected String selectEncoding(ServletRequest request) { return (this.encoding); } } -Original Message- From: Quinten Verheyen [mailto:[EMAIL PROTECTED] Sent: 14 December 2004 10:34 To: Tomcat Users List Subject: setting encoding scheme POST

setting encoding scheme POST data via container

2004-12-13 Thread Quinten Verheyen
Hi, is there a way to specify the encoding character scheme used for form POST data on the container level ? On a JSP level, this is done like this : FORM name=test method=POST encType=application/x-www-form-urlencoded; charset=UTF-8 accept-charset=UTF-8../FORM ps I use Tomcat 5.0.25 on

automated (un)deployment

2004-09-17 Thread Quinten Verheyen
Hi, in tomcat 4.1.29, what is the best approach to replace a deployed war (wich is expanded) via the manager webapp ? Also, what's the best choice between 1) automated deployment settings via the host element e.g. 'liveDeploy' or 2) the manager webapp deploy/install functions ? Kind regards,

RE: FW: is reloading the web context sufficient ?

2004-09-08 Thread Quinten Verheyen
What version of Tomcat are you referring to? Tomcat 4.1.x or Tomcat 5.0.x? Tomcat 5.0.25 to be exact ;) -Original Message- From: David Rees [mailto:[EMAIL PROTECTED] Sent: 07 September 2004 21:48 To: Tomcat Users List Subject: Re: FW: is reloading the web context sufficient ? Quinten

RE: basic authentification with IIS (tomcat 5.x) [FOUND]

2004-09-08 Thread Quinten Verheyen
Hi Philippe, are you absolutely forced to use IIS and Tomcat together or do you have a choice ? -Original Message- From: Philippe Lonchampt [mailto:[EMAIL PROTECTED] Sent: 07 September 2004 22:32 To: [EMAIL PROTECTED] Subject: Re: basic authentification with IIS (tomcat 5.x) [FOUND]

is reloading the web context sufficient ?

2004-09-07 Thread Quinten Verheyen
Hi, I'm wondering about strategies for having a production (Tomcat) webserver that hosts a lot of applications (in one web context) and needs to be running 24/7. The main issue is not to lose any traffic coming in/out. Is reloading a web context via the manager app for every change made to

RE: is reloading the web context sufficient ?

2004-09-07 Thread Quinten Verheyen
sufficient ? Hi, In the Tomcat world, one web application = one web context. So please clarify what you mean by a lot of applications (in one web context). Yoav Shapira Millennium Research Informatics -Original Message- From: Quinten Verheyen [mailto:[EMAIL PROTECTED] Sent: Tuesday, September

FW: is reloading the web context sufficient ?

2004-09-07 Thread Quinten Verheyen
-Original Message- From: Quinten Verheyen Sent: 07 September 2004 15:30 To: Tomcat Users List Subject: RE: is reloading the web context sufficient ? Yes, you are right, it's confusing the way I said it. What I meant was : one web context that contains a lot of custom class-files. Normally

RE: usage tomcat5w ?

2004-09-03 Thread Quinten Verheyen
Nobody who can explain this tomcat5w.exe or refer to documentation about it ? -Original Message- From: Quinten Verheyen Sent: 02 September 2004 19:23 To: Tomcat Users List Subject: RE: usage tomcat5w ? --- Unless the context's reloadable attr is set to true, Tomcat won't reload *any

RE: usage tomcat5w ?

2004-09-03 Thread Quinten Verheyen
with a well-secured manager webapp I'm still doubting :) -Original Message- From: Mladen Turk [mailto:[EMAIL PROTECTED] Sent: 03 September 2004 09:44 To: Tomcat Users List Subject: Re: usage tomcat5w ? Quinten Verheyen wrote: Nobody who can explain this tomcat5w.exe or refer

RE: usage tomcat5w ?

2004-09-03 Thread Quinten Verheyen
to know more about the good/bad things of such an approach, that's all. -Original Message- From: Mladen Turk [mailto:[EMAIL PROTECTED] Sent: 03 September 2004 10:24 To: Tomcat Users List Subject: Re: usage tomcat5w ? Quinten Verheyen wrote: --- Of course those are not dynamic changes

usage tomcat5w ?

2004-09-02 Thread Quinten Verheyen
Hi, we have Tomcat 5 installed and there is something that troubles me. Some guys have modified the classpath via the tomcat5w.exe (Java tab) and put all their applications in a directory outside of tomcat. It isn't even a web root, just a root for class files. They did this so they don't have

RE: usage tomcat5w ?

2004-09-02 Thread Quinten Verheyen
remotely through the manager app, don't you think ? Thanks for the feedback btw, Quinten -Original Message- From: QM [mailto:[EMAIL PROTECTED] Sent: 02 September 2004 19:03 To: Tomcat Users List Subject: Re: usage tomcat5w ? On Thu, Sep 02, 2004 at 03:44:52PM +0200, Quinten Verheyen

RE: usage tomcat5w ?

2004-09-02 Thread Quinten Verheyen
the context's reloadable attr to true so that Tomcat reloads *any* classes until a context (re)start. Please me in this issue, Thanks, Sincerely, Mandar Quinten Verheyen [EMAIL PROTECTED] wrote: --- Unless the context's reloadable attr is set to true, Tomcat won't reload *any

RE: Tomcat manager reload, start and stop functionality

2004-01-27 Thread Quinten Verheyen
: Tomcat manager reload, start and stop functionality On Mon, January 26, 2004 1at 2:54 am, Quinten Verheyen wrote: I have a question about some tasks of the manager app of Tomcat. * The Reload-task doesn't stop and start the webapp, but I wonder how it exactly works. Because when I am

Tomcat manager reload, start and stop functionality

2004-01-26 Thread Quinten Verheyen
Hi, I have a question about some tasks of the manager app of Tomcat. * The Reload-task doesn't stop and start the webapp, but I wonder how it exactly works. Because when I am transferring a new jar-file on the server and a Reload is run on the context, I need to know how this can affect

RE: Tomcat manager reload, start and stop functionality

2004-01-26 Thread Quinten Verheyen
nobody ? :-) -Original Message- From: Quinten Verheyen Sent: 26 January 2004 09:55 To: [EMAIL PROTECTED] Subject: Tomcat manager reload, start and stop functionality Hi, I have a question about some tasks of the manager app of Tomcat. * The Reload-task doesn't stop and start