Hi,
I have a JSP page (let's call it page1.jsp) that's used from two different parts of the application. The two different parts use two different beans (bean1, bean2) on my page (page1.jsp) I have a saveState for both bean1 and bean2. Now at any given usage of page1, only bean1 or bean2 will actually be used. If I do a saveState the unused bean be constructed and stored in the request? Meaning if the saveState is first use of that bean will it create the bean, or will it ignore it since the bean doesn't exist. They're both request beans. Thanks Matt

