I have 2 basic problems:...
1. I created a DIR'y under webapps and placed both a .jsp and ,html file in there to make sure I could run it and I modified the server.xml file to add a Context line for the new directory. I couldn't get them to execute got a 404 error. This is the entries in the server.xml file (usedcontainer is the directory I created):
<Context path="" docBase="ROOT" debug="0">
<Context path="/usedcontainer" docbase="usedcontainer"
debug="0" reloadable="true">
<!-- Tomcat Manager Context -->
<Context path="/manager" docBase="manager"
debug="0" privileged="true">
<!-- Tomcat Examples Context -->
<Context path="/examples" docBase="examples" debug="0"
reloadable="true" crossContext="true"/>
2. I can't get the manager to allow me access even though I added my self as manager with the "manager" keyword as a parameter. Not sure what I did wrong herer either. This is the line I added:
<user name="Brian" password="Parker" roles="manager" />
Any help here would be much appreciated. This the first time I have tried working with Tomcat.
Thanks, Brian
1. I created a DIR'y under webapps and placed both a .jsp and ,html file in there to make sure I could run it and I modified the server.xml file to add a Context line for the new directory. I couldn't get them to execute got a 404 error. This is the entries in the server.xml file (usedcontainer is the directory I created):
<Context path="" docBase="ROOT" debug="0">
<Context path="/usedcontainer" docbase="usedcontainer"
debug="0" reloadable="true">
<!-- Tomcat Manager Context -->
<Context path="/manager" docBase="manager"
debug="0" privileged="true">
<!-- Tomcat Examples Context -->
<Context path="/examples" docBase="examples" debug="0"
reloadable="true" crossContext="true"/>
2. I can't get the manager to allow me access even though I added my self as manager with the "manager" keyword as a parameter. Not sure what I did wrong herer either. This is the line I added:
<user name="Brian" password="Parker" roles="manager" />
Any help here would be much appreciated. This the first time I have tried working with Tomcat.
Thanks, Brian