| Author |
servlet does not load
|
aaaa aaaa
Greenhorn
Joined: Dec 29, 2002
Posts: 6
|
|
hi i am a beginner in servlets . i am facing a problem that when i type http://localhost:8080/servlet/myservlet1 in the browser i donot get the output the servlet class file is in Tomacat4.1\webapps\Root\Web-inf\classes directory though the examples given in the webapps\Root\examples run fine and also the welcome runs fine with http://localhost:8080/ madhur
|
 |
Cory Wilkerson
Ranch Hand
Joined: Aug 14, 2001
Posts: 84
|
|
Check your web.xml file that should be available in the root of web-inf. You'll need to look at servlet mappings to ensure that any requests made to "/servlet/myServlet1" are appropriately routed to the instance of your running servlet: Hope this helps! See Sun's Servlet Spec for more information (war files). Cory Wilkerson
|
 |
William Brogden
Author and all-around good cowpoke
Rancher
Joined: Mar 22, 2000
Posts: 12324
|
|
For Tomcat 4.1.1? they made a change in the defaults so that /servlet/yourservlet doesn't work. I recently found a nice tutorial on getting Tomcat 4.1?? working at Tutorial at Moreservlets. See item 3 under Configure Tomcat which discusses the "invoker" servlet. Bill
|
 |
 |
|
|
subject: servlet does not load
|
|
|