hello,
I had the same problem ,
This is what u have to do
U will have to write a web.xml for ur servlet which includes the
path for the invoker servlet.
example
suppose u have got a a servlet called GreetingServlet
Application is under folder
greetingwrite the
web.xml under
greeting/WEB-INF
ur class file
(GreetingServlet.class) under
greeting/WEB-INF/classesur src code
(GreetingServlet.java) under
greeting/WEB-INF/src
the sample web.xml is this,
<web-app>
<servlet>
<servlet-name>GreetingServlet</servlet-name>
</servlet-mapping>GreetingServlet</servlet-mapping>
</servlet>
<servlet-mapping>
<servlet-name>invoker</servlet-name>
<url-pattern>/servlet/*</url-pattern>
</servlet-mapping>
</web-app>
now start ur tomcat and type
http://localhost:8080/GreetingServlet
This should solve the problem