Hi David,
David E. Jones wrote:
Why use a redirect at all? Why not just change the form target?
Originally we wanted to avoid issues with refreshing the target page with POST
data. But since we designed the target pages to be free of this issue, we found
using "view" instead of "request-redirect" works fine.
Or if you do want to use a redirect, use the more common (and generally
successful) approach of saving the parameters in the user's session and
then send down a redirect with minimal information. This can be done
using a Control Servlet request event written in Java that uses the
response object to send the desired redirect.
-David
Hm, not a bad idea. I'll look into it if this comes up again.
- Leon