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

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 (ratio'

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

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 : Now comes the strange part ... - buildfile B wants to call A's deploy task, remark : it's located in another dir, more s

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
iling list. 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 > > &

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 15:

RE: Locked jar during Ant undeploy on Tomcat 5.5.3

2005-04-08 Thread Quinten Verheyen
ontext.xml I could use some assistance :-) Regards, Quinten > -Original Message- > From: 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&

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. encodingFilter filters.SetCharacterEncodingFilter encoding UTF-8

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 the

RE: Authentication - Best practice

2005-01-12 Thread Quinten Verheyen
;Tomcat Users List' > Subject: RE: Authentication - Best practice > > > Hi, > > It uses Base64 for sending the data. Heard that Base64 data > is easily > compramised compared to SSL. > > Please correct me if I am wrong. > > Regards > Rajaneesh >

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: 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 ch

RE: char encoding bug in tomcat 5.0.25 ?

2004-12-15 Thread Quinten Verheyen
whose URL pattern matches the page. Only the > character encoding > specified for the requested page is used; the encodings of > files included > via the include directive are not taken into consideration. > If there's no such > specification, no initial response character encodi

RE: char encoding bug in tomcat 5.0.25 ?

2004-12-15 Thread Quinten Verheyen
; Subject: RE: char encoding bug in tomcat 5.0.25 ? > > > > > > oh yes sorry, it's because you need to set 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. >

RE: char encoding bug in tomcat 5.0.25 ?

2004-12-15 Thread Quinten Verheyen
e 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 ?

RE: char encoding bug in tomcat 5.0.25 ?

2004-12-15 Thread Quinten Verheyen
="text/html; charset=UTF-8" %> Q > -Original Message- > From: Allistair Crossley [mailto:[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

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 a

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 : .. ps I use Tomcat 5.0.25 on Windows 2000 .. Thx in advance, Q - To unsubsc

RE: setting encoding scheme POST data via container

2004-12-13 Thread Quinten Verheyen
- > Protected Methods > > > /** > * Select an appropriate character encoding to be used, > based on the > * characteristics of the current request and/or filter > initialization > * parameters. If no character encoding should be set, retur

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 element e.g. 'liveDeploy' or 2) the manager webapp deploy/install functions ? Kind regards, Quinte

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] I'v

RE: FW: is reloading the web context sufficient ?

2004-09-08 Thread Quinten Verheyen
ent ? Quinten Verheyen wrote: > > I would simply like to know how on-going HTTP traffic is handled when the > classes get reloaded, either by the reloadable attribute in the > or by the Manager webapp reload function. What version of Tomcat are you referring to? Tomcat 4.1.x or Tomca

FW: is reloading the web context sufficient ?

2004-09-07 Thread Quinten Verheyen
inten -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. N

RE: is reloading the web context sufficient ?

2004-09-07 Thread Quinten Verheyen
reloading the web context 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

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 clas

RE: usage tomcat5w ?

2004-09-03 Thread Quinten Verheyen
ng 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 dyn

RE: usage tomcat5w ?

2004-09-03 Thread Quinten Verheyen
ation 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.ex

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 wo

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 s

RE: usage tomcat5w ?

2004-09-02 Thread Quinten Verheyen
done to avoid container restart. But that's a pretty weak argument if one can deploy/undeploy webapps 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: Tom

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: 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 w

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

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 t