Hai Nicolas
   Thanx for your reply. My problem is that bean propery return a Object.
   That's   public Object  getSampe() {
               }
ie      public address    getAddress() {
}

public class Address {
  private String _city;
  private String _state;
  private String _country;

public String getCity()
{
return _city; }
public void setCity(String aCity)
{
_city = aCity;
}
public String getState()
{
return _state; }
public void setState(String aState)
{
_state = aState;
}
public String getCountry()
{
return _country; }
public void setCountry(String aCountry)
{
_country = aCountry;
}
}


I want to write city,state, country.

hope you understand my need

Thanx
Kalaiselvan.



[EMAIL PROTECTED] wrote:

You can use <logic:iterate> to get the content of your Vector, and then <bean:write> to get properties from your bean :

<logic:iterate id="data" name="sample">
 <bean write name="data" property="foo">
</logic:iterate>

Nico.



Hi All,
I want a help from you guys. I have created a sampleAction.class using extend the Action class. This Action class create a Vector and put it into Session. I have retrieve using <bean:write property="sample" scope="session">. But here i have some problem, because this getSample() method return vector. This vector has another bean. Where how can i retrieve the properties from this bean. Please help.


thanx
Kalai


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]




--
Your favorite stores, helpful shopping tools and great gift ideas. Experience the convenience of buying online with [EMAIL PROTECTED] http://shopnow.netscape.com/




Reply via email to