Re: how do i compile servlets

2007-12-31 Thread Joly M
cheers, frank 2007/12/31, Frank W. Zammetti <[EMAIL PROTECTED]>: > > Servlets, unlike JSPs, are NOT automatically compiled by the container. > You will need to compile your servlets yourself and place the .class files > in WEB-INF/classes (or package them into a JAR and put them in > WEB-INF/lib).

Re: how do i compile servlets

2007-12-31 Thread Frank W. Zammetti
Servlets, unlike JSPs, are NOT automatically compiled by the container. You will need to compile your servlets yourself and place the .class files in WEB-INF/classes (or package them into a JAR and put them in WEB-INF/lib). Frank -- Frank W. Zammetti Founder and Chief Software Architect Omnytex

how do i compile servlets

2007-12-31 Thread Joly M
hello all, i'm calling a servlet on my application. tomcat seems not finding the servlet (error 404). i have noticee that no ".class" file was created when my web application was deployed . i have configured web.xml file, but i'm not getting any ".class" file at all. what should i do to get my ser