What is the difference between the 2 URL's :
http://localhost:8084/D_Nappster/NewServlet/
and
http://localhost:8084/D_Nappster/NewServlet
The first URL gets me a 404
response,while the second one works as expected.
From web.xml :
<servlet-mapping>
<servlet-name>NewServlet</servlet-name>
<url-pattern>/NewServlet</url-pattern>
</servlet-mapping>