Help Me on Servlet in Tomcat 5.0

2006-12-28 Thread athula bogoda
Hi All, Can any body give me guidence to run my first servlet on Tomcat 5.0. This is my file... import java.io.*; import javax.servlet.*; import javax.servlet.http.*; public class HelloWorld extends HttpServlet { public void doGet(HttpServletRequest request, HttpServletResponse response)

Re: Help Me on Servlet in Tomcat 5.0

2006-12-28 Thread EDMOND KEMOKAI
Try this link, they have some good tutorials: http://www.coreservlets.com/Apache-Tomcat-Tutorial/ On 12/28/06, athula bogoda [EMAIL PROTECTED] wrote: Hi All, Can any body give me guidence to run my first servlet on Tomcat 5.0. This is my file... import java.io.*; import javax.servlet.*;

Re: Help Me on Servlet in Tomcat 5.0

2006-12-28 Thread Dinesh Kumar
Try this link, they have some good tutorials: http://www.coreservlets.com/Apache-Tomcat-Tutorial/ THIS LINK IS GOOD - To start a new topic, e-mail: users@tomcat.apache.org To unsubscribe, e-mail: [EMAIL PROTECTED] For

RE: Help Me on Servlet in Tomcat 5.0

2006-12-28 Thread Caldarale, Charles R
From: athula bogoda [mailto:[EMAIL PROTECTED] Subject: Help Me on Servlet in Tomcat 5.0 But confused where should i should put it and run on my local machine typing http://localhost/ 1) Read the servlet spec: http://jcp.org/aboutJava/communityprocess/final/jsr154/index.html 2) Read