You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@wicket.apache.org by "Martin Grigorov (JIRA)" <ji...@apache.org> on 2019/04/09 20:11:00 UTC

[jira] [Resolved] (WICKET-6651) Redirecting with ResetResponseException does not work anymore

     [ https://issues.apache.org/jira/browse/WICKET-6651?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Martin Grigorov resolved WICKET-6651.
-------------------------------------
       Resolution: Fixed
    Fix Version/s: 8.5.0
                   9.0.0

Added support to handle Ajax response with status 301, which jQuery treats as an error.

> Redirecting with ResetResponseException does not work anymore
> -------------------------------------------------------------
>
>                 Key: WICKET-6651
>                 URL: https://issues.apache.org/jira/browse/WICKET-6651
>             Project: Wicket
>          Issue Type: Bug
>          Components: wicket-core
>    Affects Versions: 8.4.0
>            Reporter: Thomas Heigl
>            Assignee: Martin Grigorov
>            Priority: Major
>             Fix For: 9.0.0, 8.5.0
>
>         Attachments: ajax-redirect.zip
>
>
> After upgrading from 8.3.0 to 8.4.0 redirecting with {{ResetResponseException}} does not work anymore.
> I'm using the following exception to redirect on some of my pages:
> {code:java}
> public class RestartResponseWithStatusCodeException extends ResetResponseException {
>    
>    public RestartResponseWithStatusCodeException(final String url, final int statusCode) {
>       super(new RedirectRequestHandler(url, statusCode));
>    }
> }{code}
> This is most definitely caused by WICKET-6638.
> I don't have time to prepare a quickstart right now, but maybe someone knows what's going on? We discovered the issue on our stateless public pages, so it might also be related to statelessness.



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)