What URL did you use? The URL you use to access your server has to match the URL in <url-pattern>.
John > -----Original Message----- > From: Jaap Duursma [mailto:[EMAIL PROTECTED]] > Sent: Saturday, February 15, 2003 6:57 AM > To: Tomcat Users List > Subject: Re: servlets don't work in own webapp (finshed writing this > time) > > > It didn't make any difference, > I put the following in my web.xml file : > > <?xml version="1.0" encoding="ISO-8859-1"?> > > <!DOCTYPE web-app > PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN" > "http://java.sun.com/dtd/web-app_2_3.dtd"> > > <web-app> > > <display-name>PSO webapp</display-name> > <description>PSO webapp</description> > > <servlet> > <servlet-name>HelloWorld</servlet-name> > <servlet-class>HelloWorld</servlet-class> > </servlet> > > <servlet-mapping> > <servlet-name>HelloWorld</servlet-name> > <url-pattern>/HelloWorld</url-pattern> > </servlet-mapping> > > </web-app> > > thanks for ur help though, any other ideas ? > > > On Sat, 15 Feb 2003 13:33:53 +0200 > "Paul Bothma" <[EMAIL PROTECTED]> wrote: > > > Hi, > > > > Look at the web.xml for /examples. You'll see that you need > to map your > > servlet, etc. > > > > Looks something like this: > > > > <servlet> > > <servlet-name>SendMailServlet</servlet-name> > > <servlet-class>SendMailServlet</servlet-class> > > </servlet> > > > > <servlet-mapping> > > <servlet-name>SendMailServlet</servlet-name> > > <url-pattern>/SendMailServlet</url-pattern> > > </servlet-mapping> > > > > Hope this help. > > > > Paul > > > > -----Original Message----- > > From: Jaap Duursma [mailto:[EMAIL PROTECTED]] > > Sent: 15 February 2003 13:23 > > To: [EMAIL PROTECTED] > > Subject: servlets don't work in own webapp (finshed writing > this time) > > > > > > (sorry for the first mail, i exedently pressed control-s, > this time finished > > writing it) > > > > status : > > succesfully installed Tomcat 4.1.18, can access the webserver tru > > http://localhost:8180/ and the examples also work. > > > > problem : > > servlets don't work in my own webapp, jsp's do work. > > > > what I did : > > created own directory structure in the webapp folder (next > to examples) : > > webapps/pso > > webapps/pso/WEB-INF/ > > webapps/pso/WEB-INF/classes > > with files : > > webapps/pso/Hello.jsp > > webapps/pso/WEB-INF/classes/HelloWorld.java (and .class) > > > > in conf/server.xml added the line : > > <Context path="/pso" docBase="pso" debug="0" reloadable="true"> > > > > also copied the HelloWorld to the > webapps/examples/WEB-INF/classes directory > > where I can access it succesfull at : > > http://localhost:8180/examples/servlets/HelloWorld > > > > but when I go to > http://localhost:8180/pso/servlets/HelloWorld it doesn't > > work and gives me a 404 error, resource is not available. > > > > http://localhost:8180/pso/Hello.jsp does work. I tried > everything, looked on > > the net and googled but no luck yet. Could really use some help. > > > > also tried to put the following web.xml in webapps/pso/WEB-INF/ > > > > <?xml version="1.0" encoding="ISO-8859-1"?> > > <!DOCTYPE web-app > > PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN" > > "http://java.sun.com/j2ee/dtds/web-app_2_3.dtd"> > > <web-app> > > </web-app> > > > > Didn't make any difference. > > > > Probably do something wrong or overlooking something, but i > cannot seem to > > find what. > > any help is appriciated. > > > > > > > > > > > --------------------------------------------------------------------- > > To unsubscribe, e-mail: [EMAIL PROTECTED] > > For additional commands, e-mail: [EMAIL PROTECTED] > > > > > > > --------------------------------------------------------------------- > > To unsubscribe, e-mail: [EMAIL PROTECTED] > > For additional commands, e-mail: [EMAIL PROTECTED] > > > > > > --------------------------------------------------------------------- > To unsubscribe, e-mail: [EMAIL PROTECTED] > For additional commands, e-mail: [EMAIL PROTECTED] > --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
