Hi All,
Can anybody let me know how long it takes to get google app enigne account
activated.I have created two application ids one week back and till date i
havent received any mail from google about my account activation.
I am not able to upload application using eclipse 3.5 deploy option.I am
getting the following error message
Unable to assign value 'editInfo' to attribute 'url':Value 'editInfo' for
key url does not match expression '^(?!\^)/|\.|(\(.).*(?!\$).$'
Kindly help me out in this issue, please find attached web.xml file used.
Thanks in advance.
--
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.
<?xml version="1.0" encoding="UTF-8"?>
<!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>
<servlet>
<servlet-name>saveInfo</servlet-name>
<servlet-class>com.atos.bezoeker.SaveVisitorInfoServlet</servlet-class>
</servlet>
<servlet>
<servlet-name>editInfo</servlet-name>
<servlet-class>com.atos.bezoeker.EditVisitorInfoServlet</servlet-class>
</servlet>
<servlet>
<servlet-name>deleteInfo</servlet-name>
<servlet-class>com.atos.bezoeker.DeleteVisitorInfoServlet</servlet-class>
</servlet>
<servlet>
<servlet-name>login</servlet-name>
<servlet-class>com.atos.bezoeker.VisitorLoginServlet</servlet-class>
</servlet>
<servlet-mapping>
<servlet-name>saveInfo</servlet-name>
<url-pattern>saveInfo</url-pattern>
</servlet-mapping>
<servlet-mapping>
<servlet-name>editInfo</servlet-name>
<url-pattern>editInfo</url-pattern>
</servlet-mapping>
<servlet-mapping>
<servlet-name>deleteInfo</servlet-name>
<url-pattern>deleteInfo</url-pattern>
</servlet-mapping>
<servlet-mapping>
<servlet-name>login</servlet-name>
<url-pattern>login</url-pattern>
</servlet-mapping>
<welcome-file-list>
<welcome-file>home.html</welcome-file>
</welcome-file-list>
</web-app>