> Hi,
>
[quoted text clipped - 5 lines]
> -cheers,
> Manish
I'm a bit confused but I'll try to add more info. My app is installed
under the Tomcat root in the webapps/myapp/ directory. When I go to
http://localhost/myapp (on the server) it brings up the homepage. The
app is all preconfigured and I haven't touched tomcat to put in any
URLs or anything. I'm guessing upon install of the app that the folder
for it under tomcat root was created. I'm sorry I'm just not
knowledgable enough in this area. I hope that makes sense. Thanks
again for all the help.
Christy
bikemh - 12 Sep 2006 20:00 GMT
I think all you want is to write an index.jsp, and put that into
tomcat/webapps/ROOT
the JSP can use response.sendRedirect(string) from HttpServletResponse
(which is an implicit variable addressed in a JSP simply as-->
response)
> I'm a bit confused but I'll try to add more info. My app is installed
> under the Tomcat root in the webapps/myapp/ directory. When I go to
[quoted text clipped - 6 lines]
>
> Christy
Manish Pandit - 12 Sep 2006 20:03 GMT
If you want your application to show up as default tomcat app
(localhost instead of locahost/yourapp) , then go to the tomcat's
webapps folder, remove the contents of /ROOT, put your application in
there and give it a try after restarting tomcat. Again - I am not sure
if this is what you want.
-cheers,
Manish
> > Hi,
> >
[quoted text clipped - 16 lines]
>
> Christy
bikemh - 12 Sep 2006 20:19 GMT
> If you want your application to show up as default tomcat app
> (localhost instead of locahost/yourapp) , then go to the tomcat's
> webapps folder, remove the contents of /ROOT, put your application in
> there and give it a try after restarting tomcat. Again - I am not sure
> if this is what you want.
if she wanted to go that route, you could instead just edit server.xml
so that
<Host name="events.mydomain.xxx" appBase="">
<Context path="/" docBase="tomcat_home/webapps/myapp" />
</Host>
and thus redefine what is normally the ROOT webapp
csteacy - 19 Sep 2006 21:29 GMT
> if she wanted to go that route, you could instead just edit server.xml
> so that
[quoted text clipped - 6 lines]
>
> and thus redefine what is normally the ROOT webapp
I wanted to post back that this did work after a couple of trial and
error situations and remembering that I was working locally and not
publically yet so I had to use .local in the URL when testing instead
of the .com or .edu. Thank you again for all the advice and help.
-Christy