Hello,
I want to define a servlet like this :
<servlet>
<servlet-name>test</servlet-name>
<servlet-class>fr.hadf.test.servlet.Test</servlet-class>
</servlet>
<servlet-mapping>
<servlet-name>test</servlet-name>
<url-pattern>/*</url-pattern>
</servlet-mapping>
But wildcard doesn't work when url-pattern is root / as defined in my
web.xml
So that my servlet is not requested when i request an url like "http://
foo.appspot.com/foo"
but only if i request "http://foo.appspot.com/"
--
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.