| Author |
HTTP Status 404
|
saheed omotola
Greenhorn
Joined: Jun 26, 2011
Posts: 2
|
|
i saved the following program inside the classes subdirectory under WEB-INF and the web.xml was saved inside the WEB-INF. I THEREAFTER tryied to RUN the servlet application by typing http://localhost:8080/myApp/servlet/TestingServlet
HERE is my program
the web.xml is as follow:
All i get for this is HTTP STATUS 404
i also typed "http://localhost:8080/testservlet" inside my browser and what i get is "HTTP Status 404 - /testservlet"
please help me out i am very new in web programming.
thanks
|
 |
Bear Bibeault
Author and ninkuma
Marshal
Joined: Jan 10, 2002
Posts: 56153
|
|
|
It doesn't look like your deployment descriptor has any servlet mappings. Unmapped servlets cannot be invoked.
|
[Smart Questions] [JSP FAQ] [Books by Bear] [Bear's FrontMan] [About Bear]
|
 |
Abhishek Ralhan
Ranch Hand
Joined: Aug 01, 2010
Posts: 40
|
|
hi,
You need to put
<servlet-mapping> tags with each of your servlet in your web.xml file. Google for a sample web.xml file. Or it would be best, if you follow any of the startup tutorials available on 'jsp-servlets'.
|
-Abhishek
I came to this world on a Learner's License
|
 |
 |
|
|
subject: HTTP Status 404
|
|
|