Help with define tag

2001-06-11 Thread Chuck Stern
Hi, I think I'm missing something here. I have a bean that is available to my page in the request scope. Within that I have another bean that has properties I want to display. I'm trying to use the define tag to get a reference to the embedded bean and I'm getting the infamous:

Re: Help with define tag

2001-06-11 Thread Martin Cooper
Is your getter method really as you posted it? That just returns the parameter it is passed. It should be this: public AddressInfo getHomeAddress() { return this.homeAddress; } Note the absence of the parameter. The rest looks fine, although I would advocate making the homeAddress member

Re: Help with define tag

2001-06-11 Thread Oleg V Alexeev
Hello Chuck, comments below... Monday, June 11, 2001, 9:46:56 PM, you wrote: CS Hi, CS I think I'm missing something here. I have a bean that is available to my CS page in the request scope. Within that I have another bean that has CS properties I want to display. I'm trying to use the