Re: Test servlet won't run - help?

2003-01-16 Thread Erik Price
Try it from http://localhost:8080/myApp/myAppServlet That might work -- your URL-mapping doesn't say to look for servlet/myAppServlet. Erik Mark wrote: Hi, I'm trying to run a simple Hello world servlet called myAppServlet. I'm using Windows XP, Tomcat 4.1, and j2sdk 1.4.1. The servlet

RE: Test servlet won't run - help?

2003-01-16 Thread Turner, John
Do you have a Context defined in server.xml for /myApp? Check server.xml for /examples to see what one looks like. Or, check the docs for Context, there is a way to auto-deploy Contexts so you don't have to edit server.xml directly. John -Original Message- From: Mark [mailto:[EMAIL

Re: Test servlet won't run - help?

2003-01-16 Thread Mark
Wow, thanks for the timely response. That was right on the money. I love you guys. Thanks Erik. I will be unsubscribing now. Thanks again. Mark Steere [EMAIL PROTECTED] Try it from http://localhost:8080/myApp/myAppServlet That might work -- your URL-mapping doesn't say to look for

RE: Test servlet won't run - help?

2003-01-16 Thread PELOQUIN,JEFFREY (HP-Boise,ex1)
-pattern /servlet-mapping in the web.xml file you should not need to include servlet in every mapping -Original Message- From: Mark [mailto:[EMAIL PROTECTED]] Sent: Thursday, January 16, 2003 10:56 AM To: Tomcat Users List Subject: Re: Test servlet won't run - help? Wow, thanks