My apologies in advance if this topic has already been covered. Here is the
behavior I've come across and can't resolve:
When a user with an IE browser visits my site (i.e. http://www.mysite.com),
the default page is loaded - no problems. With Netscape, the user is
prompted to download. However, if the Netscape user types the full path to
the default file (i.e. http://www.mysite.com/index.jsp) there is no problem.
This would lead me to think there is a problem with my deployment - but I
can't solve it.
I'm using Tomcat 3.2.1 with the isapi filter. In the server.xml, I've set up
a context to my server's root:
<Context path="/"
docBase="d:\root"
crossContext="true"
debug="0"
reloadable="true"
trusted="false" >
</Context>
In my web.xml file in d:\root\web-inf I've defined a <welcome-file>. Under
IIS I also have a default page for the web root.
Does anyone have any ideas?
Thanks - David