This is my web.xml file....upto my knowledge all are correct....what
is the problem here...


<?xml version="1.0" encoding="utf-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";
xmlns="http://java.sun.com/xml/ns/javaee";
xmlns:web="http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd";
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee
http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"; version="2.5">
        <servlet>
                <servlet-name>ServletCheck</servlet-name>
                <servlet-class>servletCheck.ServletCheckServlet</servlet-class>
        </servlet>
        <servlet-mapping>
                <servlet-name>ServletCheck</servlet-name>
                <url-pattern>/servletCheck</url-pattern>
        </servlet-mapping>
        <welcome-file-list>
                <welcome-file>index.html</welcome-file>
        </welcome-file-list>
</web-app>


On Apr 18, 6:21 pm, Ramesh <ramesh.v1...@gmail.com> wrote:
> Check your web.xml, if it is well configured or not....

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine for Java" group.
To post to this group, send email to google-appengine-java@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine-java+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine-java?hl=en.

Reply via email to