RE: Problem adding new servlets under Tomcat 4.0.3

2002-04-24 Thread Ken Miller
Jake, Got it working...thanks for the help. Ken -- To unsubscribe: For additional commands: Troubles with the list:

RE: Problem adding new servlets under Tomcat 4.0.3

2002-04-23 Thread Jacob Kjome
Are you able to run the examples context that comes with Tomcat? Are any servlets in any context actually able to run? That should work. Are there any errors coming up in the logs or console from your context? Jake At 10:29 PM 4/23/2002 -0700, you wrote: >Jacob, > >Thanks for the help, but s

RE: Problem adding new servlets under Tomcat 4.0.3

2002-04-23 Thread Ken Miller
Jacob, Thanks for the help, but still doen't seem to work. Changed the web.xml file to read SimpleHello myexamples.SimpleHello SimpleHello /SimpleHello like you said and then tried all of the following: http://localhost:8080/testapp/SimpleHel

Re: Problem adding new servlets under Tomcat 4.0.3

2002-04-23 Thread Jacob Kjome
In your servlet-mapping, don't include the context name in the mapping. It is assumed. should be: /SimpleHello not: /testapp/SimpleHello You should now be able to access it via... http://localhost/testapp/SimpleHello or http://localhost/testapp/servlet/SimpleHello (note that in this case

Problem adding new servlets under Tomcat 4.0.3

2002-04-23 Thread Ken Miller
I was wondering if anyone could tell me what I am doing wrong? I have Tomcat 4.0.3 running and it seems to be working fine (can run the examples), but I want to add my own test apps to start working with servlets. I have started with a servlet called SimpleHello that is part of the myexamples pa