Hi!
I create a JSP page wich is going to process a bean put in the session by other jsp page.
The code is like this:
<jsp:useBean id="realty" scope="session" class="com.admin.bean.Realty" />
<jsp:setProperty name="realty" property="*" />
For the page where the user is going to enter the information and...
<jsp:useBean id="realty" scope="session" type="com.admin.bean.Realty" />
<jsp:getProperty name="realty" property="*"/>
for the page where the data processing is going to occur.
The problem I have is that once I enter the informacion on the page1 and press submit. I got the following error:
Cannot find any information on property '*' in a bean of type 'com.admin.bean.Realty'
Can sombody help me with that??
Thanks