Hello,
I have configured a Tomcat 5.5 server on and deployed my application
onto in the root context. The application works successfully, except
when I try to use anything with that starts with the /admin url
pattern. My guess is that Tomcat thinks I am trying to reach the Web
Administration module and it throws up a 404 error.
I would like to tell tomcat to use a different url for its web
administration module so I can use it on my application. I have tried
going into my admin.xml file and modifying the Context entry to use a
different path:
<Context path="/admin1"
docBase="/usr/share/tomcat5.5/server/webapps/admin"
debug="0" privileged="true" allowLinking="true">
I have also tried totally removing the admin.xml file. Neither has
worked.
Any help would be appreciated
Michael