I have the Orion 1.1.8 application server running.

I have a ProfileBean which stores profile information.

In a jsp I have:
<jsp:useBean id="profile" class="ProfileBean" scope="session" />

and input fields for user input. The form action posts the data to another
jsp which has:

<jsp:useBean id="profile" class="ProfileBean" scope="session">
<%jsp:setProperty name="profile" property="*" /%>
</jsp:useBean>

however this does not set the properties in the bean. The setProperties
methods of the bean are all correct.

If the scope of the bean is changed to 'request' for both jsps the
properties are correctly set and everything is fine.

Does anyone have ant ideas why the scope="session" should be preventing the
properties from being set ?

thanks in advance

tom saffell
APAMA


Reply via email to