You have probably configured some form of authentication / security.

When your application tries to acces the page, it wants to redirect
you to the login url (like "/myLoginForm.html" or "/ah_login/..." for
App Engine login).

Now the login url is not accessible (probably due to authentication /
security again), and issues another redirect, which issues another
redirect, and so on...

Solution: make sure that the login url is accessible to yet anonymous
users...

On Oct 19, 2:45 am, Ronoaldo José de Lana Pereira <[email protected]>
wrote:
> I'm experiencing the same behavior in my app.
>
> I got the 404 infinite redirect loop when my app has a <jsp-config> in
> web.xml. This only happens on production, so I guess is this a production
> bug?
>
> The only thing that seem to fix this issue is by removing any <jsp-config>
> you have in web.xml. This is very odd because you may want to use it to some
> useful settings, like:
>
>             <el-ignored>false</el-ignored>
>             <include-prelude>/WEB-INF/prelude.jspf</include-prelude>
>             <trim-directive-whitespaces>true</trim-directive-whitespaces>
>
> Sadly, you have to add all that stuff in your jsps manually.

-- 
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.

Reply via email to