> -----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]

Reply via email to