Re: Fwd: Re: Fwd: Re: Re: RE: how to represent nested bean properties in a jsp form

2005-09-10 Thread Laurie Harper
temp temp wrote: I solved the problem by creating an instance of AddressVO in the formbean. Here is my code after modifications. public class ServiceSelectionForm extends ActionForm { private AddressVO addressVO = new AddressVO(); public AddressVO getAddressVO() { r

Fwd: Re: Fwd: Re: Re: RE: how to represent nested bean properties in a jsp form

2005-09-09 Thread temp temp
I solved the problem by creating an instance of AddressVO in the formbean. Here is my code after modifications. public class ServiceSelectionForm extends ActionForm { private AddressVO addressVO = new AddressVO(); public AddressVO getAddressVO() { return addressVO;

Re: Fwd: Re: Re: RE: how to represent nested bean properties in a jsp form

2005-09-08 Thread Laurie Harper
That suggests that one of the classes or getter methods isn't declared public (the sample source you posted does that, so that's probably not it) or that addressVO is null in the form bean. How do you populate the form bean? What happens if you call getAddressVO().getState() on the form bean di