That is the issue I am running into exactly.

I dug in and found that Context.UnderlyingContext.Items["mr.flash"] still contained the errors key.

Is there a simpler way to remove this key other than:

if(Context.UnderlyingContext.Items["mr.flash"] != null)
{
    Flash flash = Context.UnderlyingContext.Items["mr.flash"] as Flash;
    if(flash.ContainsKey("errors"))
    {
        flash.Remove("errors");
    }
}

On 9/12/06, Mircea Jivoin <[EMAIL PROTECTED]> wrote:
That could be because the Flash will be removed only after a redirect.
Try to debug if is actually entering that function.
Is the session var reinitialized?

Mirca

On 9/12/06, hammett <[EMAIL PROTECTED]> wrote:
Hard to tell. Can you debug it? Check the class WizardActionProvider,
method StartWizard. If you confirm the bug, please fill a jira issue.

On 9/12/06, Dru Sellers < [EMAIL PROTECTED] > wrote:
> What am I missing?
>
> Dru


--
Cheers,
hammett
http://hammett.castleproject.org/

-------------------------------------------------------------------------
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
_______________________________________________
CastleProject-users mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/castleproject-users


-------------------------------------------------------------------------
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642

_______________________________________________
CastleProject-users mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/castleproject-users



-------------------------------------------------------------------------
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
_______________________________________________
CastleProject-users mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/castleproject-users

Reply via email to