> couldn't get the Post-Redirect-Get (PRG) working. The <result
> type="redirectAction"> does not translate into a browser redirection.

I've tried to debug the code, and only could find following method
implementation, that suggest me that an http redirection
_is_not_supported_:

package org.apache.struts2.portlet.servlet;
...
public class PortletServletResponse implements HttpServletResponse {
...
    public void sendRedirect(String location) throws IOException {
        throw new IllegalStateException("Not allowed in a portlet");
    }

Am I wrong?

Best regards

---------------------------------------------------------------------
To unsubscribe, e-mail: user-unsubscr...@struts.apache.org
For additional commands, e-mail: user-h...@struts.apache.org

Reply via email to