do this way !!

<Context path="/pmisnet" docBase="F:/java/pmis1"
         debug="0" reloadable="true"/>

it is working for me in this way

use the path like this F:/java/pmis1
and create a directory called WEB-INF remember it should be in caps.. but in
windows after you create it will be looking  Web-Inf but check in
DOS windows "dir" it should display WEB-INF  and then create "classes" put
the welcome.class inside it restart and check !!

if your servlet class is not welcome.class then you can register in the
web.xml with this alias name like this
<web-app>
    <servlet>
    <servlet-name>welcome</servlet-name>
    <servlet-class>com.x.y.HelloServlet</servlet-class>
  </servlet>
</web-app>


regards
Arun.N

===========================================================================
To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST".
For digest: mailto [EMAIL PROTECTED] with body: "set JSP-INTEREST DIGEST".
Some relevant FAQs on JSP/Servlets can be found at:

 http://archives.java.sun.com/jsp-interest.html
 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.jsp
 http://www.jguru.com/faq/index.jsp
 http://www.jspinsider.com

Reply via email to