You can't send a 302 to the client using sendRedirect(), since the client is all JavaScript. As the earlier commenter says, you need to navigate using JavaScript controls. You're probably better off writing a GWT RPC servlet that returns a URL to redirect to, then using Window.Location() to navigate to the new location.
-- Ikai Lan Developer Programs Engineer, Google App Engine Blogger: http://googleappengine.blogspot.com Reddit: http://www.reddit.com/r/appengine Twitter: http://twitter.com/app_engine On Tue, Dec 28, 2010 at 11:50 AM, Sumi <[email protected]> wrote: > Did you try Window.Location.assign(servelt name) > > > > On Tue, Dec 28, 2010 at 3:10 AM, dreamer <[email protected]>wrote: > >> Hi, >> >> I have a GWT entry point that submits to servlet , build using >> "FormPanel". >> I am trying to build page flow using servlet "RequestDispatcher" or >> "sendRedirect", even though no exception GAE is not forwarding to next >> page. >> >> -- >> 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]<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.
