Re: No getter method servlet Exception. using DynaActionForm

2005-11-17 Thread fea jabi
always? thanks. Thank you all for helping me using the dynaactionform. From: Laurie Harper [EMAIL PROTECTED] Reply-To: Struts Users Mailing List user@struts.apache.org To: user@struts.apache.org Subject: Re: No getter method servlet Exception. using DynaActionForm Date: Wed, 16 Nov 2005 22:49:52

Re: No getter method servlet Exception. using DynaActionForm

2005-11-17 Thread Dave Newton
fea jabi wrote: By changing the form property boolean - Boolean form-property name=confirm type=java.lang.boolean initial=true/ to form-property name=confirm type=java.lang.Boolean initial=true/ I am able to get the instance of the dynaactionform. is it necessary to use Boolean itself?

Re: No getter method servlet Exception. using DynaActionForm

2005-11-17 Thread Laurie Harper
. From: Laurie Harper [EMAIL PROTECTED] Reply-To: Struts Users Mailing List user@struts.apache.org 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

Re: No getter method servlet Exception. using DynaActionForm

2005-11-17 Thread fea jabi
] Reply-To: Struts Users Mailing List user@struts.apache.org 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 form-property name=confirm type

No getter method servlet Exception. using DynaActionForm

2005-11-16 Thread fea jabi
I am trying to use the DynaActionForm. form-bean name=CustForm type=org.apache.struts.action.DynaActionForm dynamic=true form-property name=custName type=java.lang.String/ form-property name=typeName type=java.lang.String/ form-property name=typeNameDesc

Re: No getter method servlet Exception. using DynaActionForm

2005-11-16 Thread Ext . Ilitia2
: No getter method servlet Exception. using DynaActionForm Please respond to Struts Users

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 user@struts.apache.org To: Struts Users Mailing List user@struts.apache.org CC: user@struts.apache.org Subject: Re: No getter method servlet Exception. using DynaActionForm Date: Wed

Re: No getter method servlet Exception. using DynaActionForm

2005-11-16 Thread Rahul Akolkar
From: [EMAIL PROTECTED] Reply-To: Struts Users Mailing List user@struts.apache.org To: Struts Users Mailing List user@struts.apache.org CC: user@struts.apache.org Subject: Re: No getter method servlet Exception. using DynaActionForm Date: Wed, 16 Nov 2005 16:19:18 +0100 Hi

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

Re: No getter method servlet Exception. using DynaActionForm

2005-11-16 Thread fea jabi
-To: Struts Users Mailing List user@struts.apache.org To: Struts Users Mailing List user@struts.apache.org Subject: Re: No getter method servlet Exception. using DynaActionForm Date: Wed, 16 Nov 2005 10:48:45 -0500 fea jabi wrote: DynaActionForm setupForm = (DynaActionForm) form

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 moduleConfig

Re: No getter method servlet Exception. using DynaActionForm

2005-11-16 Thread fea jabi
] Reply-To: Struts Users Mailing List user@struts.apache.org To: Struts Users Mailing List user@struts.apache.org Subject: Re: No getter method servlet Exception. using DynaActionForm Date: Wed, 16 Nov 2005 11:06:56 -0500 fea jabi wrote: When I debug after DynaActionForm setupForm = (DynaActionForm

Re: No getter method servlet Exception. using DynaActionForm

2005-11-16 Thread Laurie Harper
] Reply-To: Struts Users Mailing List user@struts.apache.org To: Struts Users Mailing List user@struts.apache.org Subject: Re: No getter method servlet Exception. using DynaActionForm Date: Wed, 16 Nov 2005 11:06:56 -0500 fea jabi wrote: When I debug after DynaActionForm setupForm = (DynaActionForm

Re: No getter method servlet Exception. using DynaActionForm

2005-11-16 Thread fea jabi
? Is there anything else I have to do? Thanks. From: Laurie Harper [EMAIL PROTECTED] Reply-To: Struts Users Mailing List user@struts.apache.org 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

Re: No getter method servlet Exception. using DynaActionForm

2005-11-16 Thread Laurie Harper
: Laurie Harper [EMAIL PROTECTED] Reply-To: Struts Users Mailing List user@struts.apache.org 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 you're trying to setup the action

Re: No getter method servlet Exception. using DynaActionForm

2005-11-16 Thread Yujun Liang
: 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 you're trying to setup the action form. Struts will create an instance of the form bean for you, which is what is passed into execute() via the 'form