Skip to Main Content

Java EE (Java Enterprise Edition) General Discussion

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

Interested in getting your voice heard by members of the Developer Marketing team at Oracle? Check out this post for AppDev or this post for AI focus group information.

jsp:getProperty

843838Sep 21 2005 — edited Sep 21 2005
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
Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Oct 19 2005
Added on Sep 21 2005
3 comments
70 views