Re: No getter method servlet Exception. using DynaActionForm

2005-11-17 Thread fea jabi
AIL PROTECTED]> Reply-To: "Struts Users Mailing List" To: user@struts.apache.org Subject: Re: No getter method servlet Exception. using DynaActionForm Date: Thu, 17 Nov 2005 14:44:07 -0500 fea jabi wrote: By changing the form property boolean - Boolean to I am able

Re: No getter method servlet Exception. using DynaActionForm

2005-11-17 Thread Laurie Harper
the Action when debugged thru the code. DynaActionForm setupForm = (DynaActionForm) form; System.out.println("In PrepareSetupAction : setupform is : " + setupForm); Any idea of why it's so? Is there anything else I have to do? Thanks. From: Laurie Harper <[EMAIL PROTECTED]> Reply

Re: No getter method servlet Exception. using DynaActionForm

2005-11-17 Thread Dave Newton
fea jabi wrote: By changing the form property boolean - Boolean to I am able to get the instance of the dynaactionform. is it necessary to use Boolean itself? Well, it's certainly better than java.lang.boolean, which doesn't exist. One of the fun non-orthagonality aspects of Java. Withou

Re: No getter method servlet Exception. using DynaActionForm

2005-11-17 Thread fea jabi
IL PROTECTED]> Reply-To: "Struts Users Mailing List" To: user@struts.apache.org Subject: Re: No getter method servlet Exception. using DynaActionForm Date: Wed, 16 Nov 2005 22:49:52 -0500 What you have below looks right to me; the action mapping has 'name' set to your action fo

Re: No getter method servlet Exception. using DynaActionForm

2005-11-16 Thread Yujun Liang
t; > Thanks. > > > > > >> From: Laurie Harper <[EMAIL PROTECTED]> > >> Reply-To: "Struts Users Mailing List" > >> To: user@struts.apache.org > >> Subject: Re: No getter method servlet Exception. using DynaActionForm > >> Date: W

Re: No getter method servlet Exception. using DynaActionForm

2005-11-16 Thread Laurie Harper
I have to do? Thanks. From: Laurie Harper <[EMAIL PROTECTED]> Reply-To: "Struts Users Mailing List" To: user@struts.apache.org Subject: Re: No getter method servlet Exception. using DynaActionForm Date: Wed, 16 Nov 2005 15:48:33 -0500 At least part of your problem is the way y

Re: No getter method servlet Exception. using DynaActionForm

2005-11-16 Thread fea jabi
t's so? Is there anything else I have to do? Thanks. From: Laurie Harper <[EMAIL PROTECTED]> Reply-To: "Struts Users Mailing List" To: user@struts.apache.org Subject: Re: No getter method servlet Exception. using DynaActionForm Date: Wed, 16 Nov 2005 15:48:33 -0500 At least

Re: No getter method servlet Exception. using DynaActionForm

2005-11-16 Thread Laurie Harper
key="colon"/> ...... thanks. From: Dave Newton <[EMAIL PROTECTED]> Reply-To:

Re: No getter method servlet Exception. using DynaActionForm

2005-11-16 Thread fea jabi
key="colon"/> .. thanks. From: Dave Newton <[EMAIL PROTECTED]> Reply-To: "Struts Users Mailing List" To: Struts Users Mailing List Subject:

Re: No getter method servlet Exception. using DynaActionForm

2005-11-16 Thread Dave Newton
fea jabi wrote: When I debug after DynaActionForm setupForm = (DynaActionForm) form; my setupForm is null Is your struts config as you posted earlier? i.e., the "name" attribute refers to a Dyna form that doesn't exist in the "form-beans" section? That won't work. ModuleConfig moduleConf

Re: No getter method servlet Exception. using DynaActionForm

2005-11-16 Thread fea jabi
wton <[EMAIL PROTECTED]> Reply-To: "Struts Users Mailing List" To: Struts Users Mailing List Subject: Re: No getter method servlet Exception. using DynaActionForm Date: Wed, 16 Nov 2005 10:48:45 -0500 fea jabi wrote: DynaActionForm setupForm = (DynaAction

Re: No getter method servlet Exception. using DynaActionForm

2005-11-16 Thread Dave Newton
fea jabi wrote: DynaActionForm setupForm = (DynaActionForm) form; ModuleConfig moduleConfig = RequestUtils.getModuleConfig(request, getServlet().getServletContext()); FormBeanConfig formConfig = moduleConfig.findFormBeanConfig("CustForm"); DynaActionFormClass d

Re: No getter method servlet Exception. using DynaActionForm

2005-11-16 Thread Rahul Akolkar
ug.cgi?id=36794 > >From: [EMAIL PROTECTED] > >Reply-To: "Struts Users Mailing List" > >To: "Struts Users Mailing List" > >CC: user@struts.apache.org > >Subject: Re: No getter method servlet Exception. using DynaActionForm > >Date: Wed, 16 N

Re: No getter method servlet Exception. using DynaActionForm

2005-11-16 Thread fea jabi
I have right ones but still getting the same error. From: [EMAIL PROTECTED] Reply-To: "Struts Users Mailing List" To: "Struts Users Mailing List" CC: user@struts.apache.org Subject: Re: No getter method servlet Exception. using DynaActionForm Date: Wed, 16 Nov 2005

Re: No getter method servlet Exception. using DynaActionForm

2005-11-16 Thread Ext . Ilitia2
bcc: 16/11/2005 15:52 Subject: No getter method servlet Exception. using DynaActionForm Please respond to

No getter method servlet Exception. using DynaActionForm

2005-11-16 Thread fea jabi
I am trying to use the DynaActionForm. initial="true"/> public class PrepareCustAction extends Action { public ActionForward execute(ActionMapping mapping, ActionForm form,