You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@myfaces.apache.org by "Leonardo Uribe (JIRA)" <de...@myfaces.apache.org> on 2011/01/12 00:26:47 UTC

[jira] Updated: (MYFACES-3009) Flash scope looses values on redirect

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

Leonardo Uribe updated MYFACES-3009:
------------------------------------

    Status: Patch Available  (was: Open)

> Flash scope looses values on redirect
> -------------------------------------
>
>                 Key: MYFACES-3009
>                 URL: https://issues.apache.org/jira/browse/MYFACES-3009
>             Project: MyFaces Core
>          Issue Type: Bug
>          Components: JSR-314
>    Affects Versions: 2.0.3
>            Reporter: Jakob Korherr
>            Assignee: Jakob Korherr
>         Attachments: MYFACES-3009-1.patch
>
>
> Example as follows:
> 1) A facelet called Entry.xhtml
> <h:form>
> <table>
>      <tr>
>        <td>First Name:</td>
>        <td>
>          <h:inputText id="fname" value="#{flash.firstName}"required="true"/>
>        </td>
>      </tr>
>      <tr>
>        <td>Last Name:</td>
>        <td>
>          <h:inputText id="lname" value="#{flash.lastName}"   required="true"/>
>        </td>
>      </tr>
> </table
>  <p><h:commandButton value="Submit" action="confirmation?faces-redirect=true"
> /></p>
>  </h:form>
> and the confirmation.xhtml:
> <table>
>      <tr>
>        <td>First Name:</td>
>        <td>
>          <h:outputText value="#{flash.keep.firstName}" />
>        </td>
>      </tr>
>      <tr>
>        <td>Last Name:</td>
>        <td>
>          <h:outputText value="#{flash.keep.lastName}"/>
>        </td>
>       </tr>
> </table>
> <h:form>
> <p><h:commandButton value="Confirm" action="finished?faces-redirect=true" /></p>
> </h:form>
> But when the confirmation page is loaded, the firstName and lastName I submitted
> is missing. Why? I am using flash.keep. According to what I read it should
> keep the values more than a PRG cycle.
> It works if I use Mojarra.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.