When I try to deploy the application to GAE using Eclipse plugin,I get
the following error


com.google.apphosting.utils.config.AppEngineConfigException: Received
SAXException parsing the input stream for C:\Users\Surya\AppData\Local
\Temp\appcfg4531845897867091812.tmp\WEB-INF/web.xml

Debugging information may be found in C:\Users\Surya\AppData\Local\Temp
\appengine-deploy1299576097604741804.log


The content of the web.xml file is

<?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>WebServices</servlet-name>
                <servlet-class>webservices.WebServicesServlet</servlet-class>
        </servlet>
        <servlet-mapping>
                <servlet-name>WebServices</servlet-name>
                <url-pattern>/webservices</url-pattern>
        </servlet-mapping>
        <welcome-file-list>
                <welcome-file>index.html</welcome-file>
        </welcome-file-list>
</web-app>



Please tell me how to correct this.
Thanks in advance

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

Reply via email to