the issue:
http://jira.opensymphony.com/secure/ViewIssue.jspa?key=WW-407


heres the method, whats the purpose of nestedContext? ------------- public String execute() throws Exception { ActionContext nestedContext = ActionContext.getContext(); ActionContext.setContext(invocation.getInvocationContext());

String retCode = null;

        try {
            retCode = invocation.invoke();
        } finally {
            ActionContext.setContext(nestedContext);
        }

        return retCode;
    }
--------------


the problems im having and described and shown in the app attached for WW-407 go away after i comment out the line: ActionContext.setContext(nestedContext);

another thing i've noticed is that with ActionContext.getContext always returns either one of two objects, always alternating for every request (this is when used inside a sitemesh decorator)






------------------------------------------------------- This SF.net email is sponsored by: SF.net Giveback Program. Does SourceForge.net help you be more productive? Does it help you create better code? SHARE THE LOVE, and help us help YOU! Click Here: http://sourceforge.net/donate/ _______________________________________________ Opensymphony-webwork mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/opensymphony-webwork

Reply via email to