I think the problem is that you had an index.html file in your web application, and static files always override filters and servlets in App Engine. See the second paragraph of:
http://code.google.com/appengine/docs/java/gettingstarted/staticfiles.html You can either remove the index.html (sounds like that's what you did, possibly without being aware of it), or you can specify your own <welcome-file-list> that doesn't include index.html. On Fri, Feb 19, 2010 at 7:30 AM, Ian Marshall <[email protected]>wrote: > You're welcome. It's amazing how a prod from someone else can get the > coding moving again, even if the prod was not completely on target! > > -- > 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]<google-appengine-java%[email protected]> > . > For more options, visit this group at > http://groups.google.com/group/google-appengine-java?hl=en. > > -- 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.
