Hi; I'm tring to migrate a JSP application from tomcat 3.2/sun jdk 1.3.1 to tomcat 4.03/ibm jdk 1.3.1
In my old server.xml file I had it set up so everything under the /net directory was big giant web app. If I had directory "book" ( /net/books") under /net I could access it with the following url http://host:port/books/ I used this line to achieve this my server.xml: <ContextManager debug="0" home="/net" workDir="work" showDebugInfo="true" /> This hasn't worked with Tomcat 4.03. The new default manager application sounded attractive so I decided to give it a shot to get a similar set up. I modified CATALINA_HOME/conf/tomcat-user.xml so that "steve" would be a manager: <tomcat-users> <user name="tomcat" password="tomcat" roles="tomcat" /> <user name="role1" password="tomcat" roles="role1" /> <user name="both" password="tomcat" roles="tomcat,role1" /> <user name="steve" passwords="steve" roles="manager"/> </tomcat-users> I then tried the sample command: http://localhost:8080/manager/path? The authentication box came up. I type in "steve" for the password and username. The dialog box would just keep cycling back at me until tomcat locked me out. Any idea what I am missing or how I can set up one giant webapp in the style I described above? Steve -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>
