[
https://issues.apache.org/jira/browse/WW-4618?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15282426#comment-15282426
]
Hudson commented on WW-4618:
----------------------------
SUCCESS: Integrated in Struts-JDK6-support-2.3 #1027 (See
[https://builds.apache.org/job/Struts-JDK6-support-2.3/1027/])
WW-4618 Supports custom redirect types which base on (lukaszlenart: rev
f052398cd255f8fc2ff50cbd0f5828e62a0241a1)
*
core/src/main/java/org/apache/struts2/interceptor/MessageStorePreResultListener.java
> MessageStorePreResultListener doesn't store messages for 3rd-party
> RedirectResult subclasses
> ---------------------------------------------------------------------------------------------
>
> Key: WW-4618
> URL: https://issues.apache.org/jira/browse/WW-4618
> Project: Struts 2
> Issue Type: Bug
> Affects Versions: 2.3.28
> Reporter: Jim deVos
> Assignee: Lukasz Lenart
> Fix For: 2.3.29, 2.5.1
>
>
> My team uses a custom subclass of ServletRedirectResult, e.g.
> "org.tdar.struts.ServletRedirectResult". After updating to 2.3.8 our messages
> no longer survive a redirect. I believe the problem lies with this section
> of
> [MessageStorePreResultListener|https://git-wip-us.apache.org/repos/asf?p=struts.git;a=blob;f=core/src/main/java/org/apache/struts2/interceptor/MessageStorePreResultListener.java;h=60fcffe2116f16503ba6540ff9f69b25dac173f1;hb=8852618]:
>
> {code}
> if (resultConfig != null) {
> isRedirect =
> ServletRedirectResult.class.getName().equals(resultConfig.getClassName())
> ||
> ServletActionRedirectResult.class.getName().equals(resultConfig.getClassName());
> }
> {code}
> Per the discussion in WW-4605, the following change could likely resolve the
> issue:
> {code}
> if (resultConfig != null) {
> isRedirect =
> ServletRedirectResult.class.isAssignableFrom(Class.forName(resultConfig.getClassName()));
> }
> {code}
--
This message was sent by Atlassian JIRA
(v6.3.4#6332)