Hi All, I am facing a problem in updating the request parameters in chain actions. Please find the description below with example scenario explained: I am having a form TestForm with a property name
Now when I submit the form to ActionOne I have been modifying the property as testForm.setName("updatedName"), After this in the session I am setting the form object as session.put("updatedForm", testForm) and now the result type of ActionOne is chain and the action that is called is ActionTwo. Now in ActionTwo if I get the updated form from session using TestForm updatedForm = (TestForm) session.get("updatedForm") and when I print updatedForm.getName() it was displaying the name that is submitted to ActionOne but I am not to able to get the updated name that I have modified in the ActionOne execute method. Please help me out how can I get the updated request parameters. kind regards, Srikanth