I am using Servlet 2.3 and Tomcat 4.1, problem is that when I start to process form 
data, it simply give error message look like not found Hello.class. While I have 
properly set my dtd. Pls. tell me what is the problem. I also set my context properly 
in server.xml. pls. tell me what I do or suggest me a site where I can get help
Thanks!
Imran

My dtd is
<!DOCTYPE web-app
    PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN"
    "http://java.sun.com/dtd/web-app_2_3.dtd";>
<web-app>
    <display-name> World Application</display-name>
    <servlet>
        <servlet-name>HelloServlet</servlet-name>
        <servlet-class>HelloWorld</servlet-class>
    </servlet>=
    <servlet-mapping>
        <servlet-name>HelloServlet</servlet-name>
        <url-pattern>/hello</url-pattern>
    </servlet-mapping>
</web-app>

___________________________________________________________________________
To unsubscribe, send email to [EMAIL PROTECTED] and include in the body
of the message "signoff SERVLET-INTEREST".

Archives: http://archives.java.sun.com/archives/servlet-interest.html
Resources: http://java.sun.com/products/servlet/external-resources.html
LISTSERV Help: http://www.lsoft.com/manuals/user/user.html

Reply via email to