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 <[email protected]> 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 [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/google-appengine-java?hl=en.
