RE: Getting Tomcat to redirect requests

2002-07-25 Thread Shapira, Yoav
Howdy, A simple filter could do the trick. Have do a response.sendRedirect() for every request. The filter's url-pattern would be /MyApp/* where MyApp is the app you want to take down. However, this solution requires you to edit the web.xml and restart your tomcat server in order to deploy the

RE: Getting Tomcat to redirect requests

2002-07-25 Thread Collins, Jim
Thanks Yoav, I'll try that. Regards Jim. -Original Message- From: Shapira, Yoav [mailto:[EMAIL PROTECTED]] Sent: 25 July 2002 14:28 To: Tomcat Users List Subject: RE: Getting Tomcat to redirect requests Howdy, A simple filter could do the trick. Have do