Hi,

I changed webapps/helloworld/WEB-INF/web.xml to have a url pattern of
/hello.  I also changed conf/server.xml to set the Context path="/hello".
When I go to my browser with http://192.168.1.3/hello, I get a directory
listing for /.  This is great because I can see the images directory (with
my images properly in place).  Unfortunately, the servlet doesn't execute at
all????

I would like to think I would see the servlet executing.  Any ideas?  Also,
this solution is problematic anyways, as I need to parse all incoming
requests and respond to them, Only multimedia (images, etc.) should not be
handled by the servlet.

BTW, I can't find the spec SVR.11 - anyone have a link?

Mark Biciunas
[EMAIL PROTECTED]
----- Original Message -----
From: "Stefan Radzom" <[EMAIL PROTECTED]>
To: "'Tomcat Users List'" <[EMAIL PROTECTED]>
Sent: Tuesday, July 08, 2003 4:44 PM
Subject: RE: images not appearing


> > -----Original Message-----
> > In webapps/hello/WEB-INF/web.xml, I have the following:
> >
> >     <web-app>
> >         ...
> >         <servlet>
> >             <servlet-name>helloworld</servlet-name>
> >             <servlet-class>helloworld.Hello</servlet-class>
> >         </servlet>
> >
> >         <servlet-mapping>
> >             <servlet-name>helloworld</servlet-name>
> >             <url-pattern>/</url-pattern>
> >         </servlet-mapping>
> >
> >     </web-app>
> >
> >
>
> You are trying to map every request to your helloworld servlet. This means
> really *all* requests (including images etc.) Try to be a bit more
specific,
> like <url-pattern>/helloworld</url-pattern> . See the spec (SRV.11) for
more
> details on request mappings.
>
> -Stefan
>
>
>
> ---------------------------------------------------------------------
> 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]

Reply via email to