Re: How to abort the webapp load/deployment

2002-07-29 Thread David Mossakowski
You can try having a single servlet that has 'handlers' for it and so all requests go through it first and it dipatches them further to handlers. I have this setup and map the servlet to something like /handler and then for an action such as handler/AuthenticationHandler the request goes to

RE: How to abort the webapp load/deployment

2002-07-29 Thread Extance, Paul
: Wednesday, July 24, 2002 1:39 PM To: Tomcat Users List Subject: RE: How to abort the webapp load/deployment You could uild a MVC app where there are no page accesses that don't pass through the controller (i.e. index.form and form is mapped to a servlet which does a requestDispatcher to index.html

RE: How to abort the webapp load/deployment

2002-07-29 Thread Craig R. McClanahan
On Mon, 29 Jul 2002, Extance, Paul wrote: Date: Mon, 29 Jul 2002 09:54:46 -0700 From: Extance, Paul [EMAIL PROTECTED] Reply-To: Tomcat Users List [EMAIL PROTECTED] To: 'Tomcat Users List' [EMAIL PROTECTED] Subject: RE: How to abort the webapp load/deployment I already use Struts, so

How to abort the webapp load/deployment

2002-07-24 Thread Extance, Paul
Hello, Is it possible to write a 'validation' servlet, that does some basic checks, which if fail, cause the whole web application to be unavailable? This servlet would be flagged as load-on-startup such that it was the first one to execute. I'm trying to achive something similar to JBoss 2.x

Re: How to abort the webapp load/deployment

2002-07-24 Thread Craig R. McClanahan
On Wed, 24 Jul 2002, Extance, Paul wrote: Date: Wed, 24 Jul 2002 12:12:54 -0700 From: Extance, Paul [EMAIL PROTECTED] Reply-To: Tomcat Users List [EMAIL PROTECTED] To: '[EMAIL PROTECTED]' [EMAIL PROTECTED] Subject: How to abort the webapp load/deployment Hello, Is it possible to write

RE: How to abort the webapp load/deployment

2002-07-24 Thread Mike Jackson
. If this is greek I can give you a better example. --mikej -=- mike jackson [EMAIL PROTECTED] -Original Message- From: Extance, Paul [mailto:[EMAIL PROTECTED]] Sent: Wednesday, July 24, 2002 12:13 PM To: '[EMAIL PROTECTED]' Subject: How to abort the webapp load/deployment Hello