RE: How can I take a webapp "temporarily out of service" using mod_jk?

2006-01-26 Thread Prout John - jprout
messages for individual webapps to mod_jk, this is possible. Thanks for your help John -Original Message- From: Mladen Turk [mailto:[EMAIL PROTECTED] Sent: Tuesday, January 24, 2006 11:36 PM To: Tomcat Users List Subject: Re: How can I take a webapp "temporarily out of service&q

Re: How can I take a webapp "temporarily out of service" using mod_jk?

2006-01-25 Thread Pulkit Singhal
Hello, Ok this might be a step in the totally wrong direction for you...but I just saw another post...where the "problem" is that the user sees the "out of service" message...LOL So may be you'll have some luck if you head over there and checkout what his config is!!! The subject of this topic is

Re: How can I take a webapp "temporarily out of service" using mod_jk?

2006-01-24 Thread Mladen Turk
Prout John - jprout wrote: I think this is the trick: If you need only to remove particular mappings then use JkMount directive and prefix each mapping with '-'. Within 60 seconds, mod_jk will disable the mappings. Looking at documentation at the link you sent, it describes this behavi

RE: How can I take a webapp "temporarily out of service" using mod_jk?

2006-01-24 Thread Prout John - jprout
s is a big step in the right direction Thanks! John -Original Message- From: Mladen Turk [mailto:[EMAIL PROTECTED] Sent: Monday, January 23, 2006 11:17 PM To: Tomcat Users List Subject: Re: How can I take a webapp "temporarily out of service" using mod_jk? Prout John - jpr

Re: How can I take a webapp "temporarily out of service" using mod_jk?

2006-01-24 Thread David Smith
Prout John - jprout wrote: >Hi > > > >I am running a JBoss cluster, using tomcat as the Servlet engine. Apache >and mod_jk provide load-balancing of requests over the machines in the >cluster > > > >I need to be able to replace all the URLs in the webapp with a >"Temporarily out of service" page

Re: How can I take a webapp "temporarily out of service" using mod_jk?

2006-01-23 Thread Mladen Turk
Prout John - jprout wrote: Hi I am running a JBoss cluster, using tomcat as the Servlet engine. Apache and mod_jk provide load-balancing of requests over the machines in the cluster Use mod_jk status worker. This is webapp inside Apache that allows you to manage loadbalancer members. Inside

RE: How can I take a webapp "temporarily out of service" using mod_jk?

2006-01-23 Thread Frank W. Zammetti
t; > -Original Message- > From: Frank W. Zammetti [mailto:[EMAIL PROTECTED] > Sent: Monday, January 23, 2006 2:00 PM > To: Tomcat Users List > Cc: users@tomcat.apache.org > Subject: Re: How can I take a webapp "temporarily out of service" using > mod_jk? >

RE: How can I take a webapp "temporarily out of service" using mod_jk?

2006-01-23 Thread Prout John - jprout
filter? I don't know much about Apache filters Thanks - John -Original Message- From: Frank W. Zammetti [mailto:[EMAIL PROTECTED] Sent: Monday, January 23, 2006 2:00 PM To: Tomcat Users List Cc: users@tomcat.apache.org Subject: Re: How can I take a webapp "temporarily out of

Re: How can I take a webapp "temporarily out of service" using mod_jk?

2006-01-23 Thread Frank W. Zammetti
Hi John, A filter should do the trick for you. Have it interrogate some value somewhere (context value? static class? database?) and when it sees a particular value, redirect to your out of service page. Since your in a cluster, you have the problem of replicating this "out of service" flag to a

How can I take a webapp "temporarily out of service" using mod_jk?

2006-01-23 Thread Prout John - jprout
Hi I am running a JBoss cluster, using tomcat as the Servlet engine. Apache and mod_jk provide load-balancing of requests over the machines in the cluster I need to be able to replace all the URLs in the webapp with a "Temporarily out of service" page during maintenance, and I need to do th