Hi, i have already installed j2se 1.6 and apache tomcat 5. I running successfully JSP page. But trouble with servlet. Is j2EE is needed to successfully run servlet? Thanks in advance.
Vassili Vladimir
Ranch Hand
Joined: Mar 08, 2007
Posts: 1585
posted
0
Hi,
To run a Servlet or a JSP, you don't need a fully compliant J2EE Application Server, you just need a web container like Tomcat to run a web component ...
What problems are you encountering? Is it in compiling or in running the servlets?
As pointed out, you don't need anything more than Tomcat and J2SE.
Madhusudan Banik
Greenhorn
Joined: Jan 14, 2007
Posts: 10
posted
0
Firstly i get compilation error due to some HttpServlet related classes. Then i add the classpath variable servlet-api.jar form the tomcat\common\lib\ and the program compiles successfully. But now i get 404 not found error from the browser. I make these put Hello.class file into webapps\ex1\WEB-INF\classes\ and make a web.xml file and put it webapps\ex1\WEB-INF\ and from the browser http://localhost:8080/ex1/Hello
It get me the 404 file not found error. I need to dig it why this happens. Any advice will be appreciated.
Madhusudan Banik
Greenhorn
Joined: Jan 14, 2007
Posts: 10
posted
0
My problem was solved. It's wordpad related problem. I edit my web.xml file using wordpad and its add some extra character which give me these trouble.