Trying to deploy my app (noticeorange) with the 1.3.3 runtime is
giving me some hiccups with my main servlet mapping. I map all
requests into this one servlet and then figure stuff out from there.
Has worked fine until just now when I tried to upgrade my dev
environment to 1.3.3. Only / is mapping to the servlet with either of
these two entries in web.xml:
<servlet-mapping>
<servlet-name>notice</servlet-name>
<url-pattern>/</url-pattern>
</servlet-mapping>
OR:
<servlet-mapping>
<servlet-name>notice</servlet-name>
<url-pattern>/*</url-pattern>
</servlet-mapping>
Is there some other way to do this now? Is it failing for other
people or just me?
Thanks,
-Casey
--
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.