Re: ActionForm is null

2007-02-25 Thread Paul Benedict
Assuming Struts 1.x, Action Forms are null when the "name" attribute, which specifies the form, is omitted. Forms are optional for actions. Paul Dave Newton wrote: I'm glad you fixed your problem. --- Monkeyden <[EMAIL PROTECTED]> wrote: If I knew exactly what to tell you, I would likely kno

Re: ActionForm is null

2007-02-25 Thread Dave Newton
I'm glad you fixed your problem. --- Monkeyden <[EMAIL PROTECTED]> wrote: > If I knew exactly what to tell you, I would likely > know enough to fix it. Most people seem to find that posting relevent portions of the config file(s) in question and isolated code chunks to be a reasonable place to st

Re: ActionForm is null

2007-02-25 Thread Monkeyden
If I knew exactly what to tell you, I would likely know enough to fix it. Turns out I did. The root cause of the problem, and the solution, had nothing todo with Struts. On 2/25/07, Dave Newton <[EMAIL PROTECTED]> wrote: --- Monkeyden <[EMAIL PROTECTED]> wrote: > Im using Struts 1.2.9 on Tomca

Re: ActionForm is null

2007-02-25 Thread Dave Newton
--- Monkeyden <[EMAIL PROTECTED]> wrote: > Im using Struts 1.2.9 on Tomcat 4.1.31. Somehow, my > form is null within my Action. That's not much to go on. d. Need Mail bonding? Go to the Yahoo! Mail Q&A f

ActionForm is null

2007-02-25 Thread Monkeyden
Im using Struts 1.2.9 on Tomcat 4.1.31. Somehow, my form is null within my Action. It's even null at the level FormBeanConfig.formBeanClass() is called. The type, returned by FormBeanConfig.getType(), returns the correct String, but the call to classLoader.loadClass(getType()) fails to load the

ActionForm is null when using dynabean

2006-07-07 Thread Yanroy
// TODO: configure analysis here exp.addAnalysis(analysis); return mapping.findForward("AnalysisConfigReturn"); } I hope you'll forgive the long post... I just wanted to provide enough information for someo

RE: On post ActionForm is null

2004-08-04 Thread Jim Barrows
> -Original Message- > From: lnader2000 [mailto:[EMAIL PROTECTED] > Sent: Tuesday, August 03, 2004 10:36 AM > To: [EMAIL PROTECTED] > Subject: On post ActionForm is null > > > I have a simple form show below: > > class="com.company.web.for

RE: On post ActionForm is null

2004-08-04 Thread Gupta, Sahil
ActionForm is null I have a simple form show below: Save Delete This is how I have defined it in the struts-config file When I load the page it seems to work fine and call the appropriate setter and getter methods in my ActionForm class. But when I click on Save to

On post ActionForm is null

2004-08-04 Thread lnader2000
I have a simple form show below: Save Delete This is how I have defined it in the struts-config file When I load the page it seems to work fine and call the appropriate setter and getter methods in my ActionForm class. But when I click on Save to submit the form,