RE: initialize java form bean

2007-03-15 Thread Lim Hock-Chai
Ok. Thanks. Will try it out tonight. -Original Message- From: Harring Figueiredo [mailto:[EMAIL PROTECTED] Sent: Wednesday, March 14, 2007 4:26 PM To: Struts Users Mailing List Subject: Re: initialize java form bean Try action name=SomeAction class=com.some.path.to.youAction

Re: initialize java form bean

2007-03-14 Thread Harring Figueiredo
Try action name=SomeAction class=com.some.path.to.youAction param name=nameOfAttributeValue you want/param Make sure your action has the method that match accessors for the attribute. In the case above, you need public String setNameOfAttribute(String va){ } Hope this helps.

Re: initialize java form bean

2007-03-14 Thread Dave Newton
--- Lim Hock-Chai [EMAIL PROTECTED] wrote: is there a way to set a property of a java form bean from struts-config.xml? I try to use set-property and it is not working. Which version of Struts (I'm assuming Struts 1, but which version?) What did you try already? d.