However, from the subject of your e-mail it appears that you want to do a Redirect from http://localhost:8080/standard/ to http://localhost:8080/cruisecontrol/ which is easy to accomplish.
within a JSP Scriptlet: <%response.sendRedirect("/cruisecontrol/"); %> with JSP/JSTL c:redirect tag within a Servlet: response.sendRedirect("/cruisecontrol/"); The above redirects with HTTP 302 I guess thats what you're looking for. Regards -Rashmi --------------------------------------------------------------------- To start a new topic, e-mail: users@tomcat.apache.org To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]