Hi 
 
 
I have put the Servlet class(DeepServlet.class) in a folder which is
there in my classpath. And I have set the following in web.xml(it is
within the folder WEB-INF UNDER MY APPLICATION).
 
<web-app>
 
 
        <servlet>
            <servlet-name>deep</servlet-name>
            <servlet-class>com.servlet.DeepServlet</servlet-class>
        </servlet>
 
                        <servlet-mapping>
                                    <url-pattern>/deep</url-pattern>
                                    <servlet-name>deep</servlet-name>
                        </servlet-mapping>
 
                        
</web-app>
 
BUT IM OPENING IT IN BROWSER
 
http://localhost:8080/deep/deep
 
ITS GIVING PAGE NOT FOUND.
 
Please comment
 
Regards,
Deep 


Reply via email to