Hello, Here's my problem, I have two Actions, both use the same form bean as follows from the config:
<action path="/createnew" type="PartCreateAction" name="partListForm" scope="request" input="/NewPart.jsp" /> <action path="/partlist" type="PartListAction" name="partListForm" scope="request" input="/MainMenu.jsp" /> I start with first action and then always forward to the second. In the first action I change some of the form bean properties by calling its setter methods before I forward to the second action. However, the second action doesn't see the changes I made to the form bean properties.Why? Aren't they both using the same instance of the form bean for the duration of the request????? If not, how do I accomplish this? Please help. Thanks , MAX -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

