RE: Can you set a webapp as Tomcat's default page?

2003-01-18 Thread Bill
I think you'd specify a path that maps to the servlet. I'm sorry I dont follow. But I don't think this is really what you want, either. Specifying it as welcome page means that it will only be served as the default page for the directory. You said all requests. But you can't really

RE: Can you set a webapp as Tomcat's default page?

2003-01-17 Thread Raible, Matt
I don't believe Tomcat 4.1.x supports servlets as the welcome page - you could, however, put an index.jsp into your webapp that does a response.redirect to your servlet. The Servlet 2.4 spec supports servlets as welcome files. Can you hit your servlet if you type it in the URL? Matt

RE: Can you set a webapp as Tomcat's default page?

2003-01-17 Thread Turner, John
Check out welcome-file in web.xml. John -Original Message- From: Bill [mailto:[EMAIL PROTECTED]] Sent: Friday, January 17, 2003 10:22 AM To: tomcat user Subject: Can you set a webapp as Tomcat's default page? I want to set up my server so that all requests take you to the

RE: Can you set a webapp as Tomcat's default page?

2003-01-17 Thread PELOQUIN,JEFFREY (HP-Boise,ex1)
How did it fail? Also you need to use JkMount /* ajp13 otherwise nothing will be mapped to tomcat expect for the root url Jeff -Original Message- From: Bill [mailto:[EMAIL PROTECTED]] Sent: Friday, January 17, 2003 8:22 AM To: tomcat user Subject: Can you set a webapp as Tomcat's

RE: Can you set a webapp as Tomcat's default page?

2003-01-17 Thread Bill
Ok...new development...adding the * to the JkMount directive now allows the login page to render without any of its images. At least its progress right! :) Funny thing is my first attempt at this, I did have '/*' as the mount point but that didnt work. I'm pretty sure this is because I

RE: Can you set a webapp as Tomcat's default page?

2003-01-17 Thread Tim Moore
-Original Message- From: Bill [mailto:[EMAIL PROTECTED]] Sent: Friday, January 17, 2003 11:15 AM To: Tomcat Users List Subject: RE: Can you set a webapp as Tomcat's default page? Ok...new development...adding the * to the JkMount directive now allows the login page to render