RE: [SOLVED]Cannot retrieve definition for form bean null

2004-09-10 Thread Jim Barrows
> -Original Message- > From: Carlos Chang [mailto:[EMAIL PROTECTED] > Sent: Friday, September 10, 2004 3:45 PM > To: Struts Users Mailing List > Subject: RE: [SOLVED]Cannot retrieve definition for form bean null > > > Hello, > > Let me first apologize

RE: [SOLVED]Cannot retrieve definition for form bean null

2004-09-10 Thread Carlos Chang
s Users Mailing List Subject: RE: [SOLVED]Cannot retrieve definition for form bean null leads to the messageForm.jsp page that I had the problem with. is in the messageForm.jsp page. So, the action mappings are correct now. What caused the problem I had earlier today was the missing name att

RE: [SOLVED]Cannot retrieve definition for form bean null

2004-09-10 Thread Caroline Jen
inal Message- > > From: Caroline Jen [mailto:[EMAIL PROTECTED] > > Sent: Friday, September 10, 2004 3:09 PM > > To: Struts Users Mailing List > > Subject: RE: [SOLVED]Cannot retrieve definition > for form bean null > > > > > > The > > > >

RE: [SOLVED]Cannot retrieve definition for form bean null

2004-09-10 Thread Jim Barrows
> -Original Message- > From: Caroline Jen [mailto:[EMAIL PROTECTED] > Sent: Friday, September 10, 2004 3:09 PM > To: Struts Users Mailing List > Subject: RE: [SOLVED]Cannot retrieve definition for form bean null > > > The > Okay, the action here ne

RE: [SOLVED]Cannot retrieve definition for form bean null

2004-09-10 Thread Caroline Jen
The --- Jim Barrows <[EMAIL PROTECTED]> wrote: > > > > -Original Message- > > From: Caroline Jen [mailto:[EMAIL PROTECTED] > > Sent: Friday, September 10, 2004 2:51 PM > > To: Struts Users Mailing List > > Subject: RE: [SOLVED]Canno

Re: [SOLVED]Cannot retrieve definition for form bean null

2004-09-10 Thread Caroline Jen
> > type="java.lang.String"/> > >> name="priority" > > type="java.lang.String"/> > >> name="distribution" > > type="java.lang.S

Re: [SOLVED]Cannot retrieve definition for form bean null

2004-09-10 Thread Matt Bathje
name="distribution" type="java.lang.String"/> name="messageBody" type="java.lang.String"/> --- Jim Barrows <[EMAIL PROTECTED]> wrote: -Original Message- From: Matt Bathje [mailto

RE: [SOLVED]Cannot retrieve definition for form bean null

2004-09-10 Thread Jim Barrows
> -Original Message- > From: Caroline Jen [mailto:[EMAIL PROTECTED] > Sent: Friday, September 10, 2004 2:51 PM > To: Struts Users Mailing List > Subject: RE: [SOLVED]Cannot retrieve definition for form bean null > > > Yeah, I think that there is another issue

RE: [SOLVED]Cannot retrieve definition for form bean null

2004-09-10 Thread Caroline Jen
--- Jim Barrows <[EMAIL PROTECTED]> wrote: > > > > -Original Message- > > From: Matt Bathje [mailto:[EMAIL PROTECTED] > > Sent: Friday, September 10, 2004 2:38 PM > > To: Struts Users Mailing List > > Subject: Re: [SOLVED]Canno

RE: [SOLVED]Cannot retrieve definition for form bean null

2004-09-10 Thread Jim Barrows
> -Original Message- > From: Matt Bathje [mailto:[EMAIL PROTECTED] > Sent: Friday, September 10, 2004 2:38 PM > To: Struts Users Mailing List > Subject: Re: [SOLVED]Cannot retrieve definition for form bean null > > > Jim Barrows wrote: > > > >

Re: [SOLVED]Cannot retrieve definition for form bean null

2004-09-10 Thread Matt Bathje
Jim Barrows wrote: Not the form bean class... The action definition in struts-config. type="com.sssc.csr.web.actions.ShowBorrowerAction"> You have to tell the action definition what form your using, regardless of whether it is DynaForm, ValidatorForm or ActionForm. When one of the

Re: [SOLVED]Cannot retrieve definition for form bean null

2004-09-10 Thread Matt Bathje
Caroline Jen [mailto:[EMAIL PROTECTED] Sent: Friday, September 10, 2004 12:37 PM To: Struts Users Mailing List Subject: RE: [SOLVED]Cannot retrieve definition for form bean null Hi, I have found the mistake. The mistake is that is not a struts tag equivalent to HTML tag. Are you sure? How else

RE: [SOLVED]Cannot retrieve definition for form bean null

2004-09-10 Thread Jim Barrows
> -Original Message- > From: Caroline Jen [mailto:[EMAIL PROTECTED] > Sent: Friday, September 10, 2004 2:30 PM > To: Struts Users Mailing List > Subject: Re: [SOLVED]Cannot retrieve definition for form bean null > > >

Re: [SOLVED]Cannot retrieve definition for form bean null

2004-09-10 Thread Caroline Jen
. > > If I use , I get 'cannot retrieve > > definition for form bean null' > > --- Jim Barrows <[EMAIL PROTECTED]> wrote: > > > > > >> > >>>-----Original Message- > >>>From: Caroline Jen [mailto:[EMAIL PROTECTED] > >>>Sent: Friday,

Re: [SOLVED]Cannot retrieve definition for form bean null

2004-09-10 Thread Matt Bathje
rieve definition for form bean null' --- Jim Barrows <[EMAIL PROTECTED]> wrote: -Original Message- From: Caroline Jen [mailto:[EMAIL PROTECTED] Sent: Friday, September 10, 2004 12:37 PM To: Struts Users Mailing List Subject: RE: [SOLVED]Cannot retrieve definition for form be

RE: [SOLVED]Cannot retrieve definition for form bean null

2004-09-10 Thread Jim Barrows
> -Original Message- > From: Caroline Jen [mailto:[EMAIL PROTECTED] > Sent: Friday, September 10, 2004 2:12 PM > To: Struts Users Mailing List > Subject: RE: [SOLVED]Cannot retrieve definition for form bean null > > > I use the HTML tag to make it work. &g

Re: [SOLVED]Cannot retrieve definition for form bean null

2004-09-10 Thread Wendy Smoak
From: "Caroline Jen" <[EMAIL PROTECTED]> > I use the HTML tag to make it work. > If I use , I get 'cannot retrieve > definition for form bean null' The last example you posted was missing the 'name' attribute in your tag. Without that, when Struts comes to an tag, it looks to the action mappin

RE: [SOLVED]Cannot retrieve definition for form bean null

2004-09-10 Thread Caroline Jen
ptember 10, 2004 12:37 PM > > To: Struts Users Mailing List > > Subject: RE: [SOLVED]Cannot retrieve definition > for form bean null > > > > > > Hi, I have found the mistake. > > > > The mistake is that is not a > struts > > tag equival

RE: [SOLVED]Cannot retrieve definition for form bean null

2004-09-10 Thread Jim Barrows
> -Original Message- > From: Caroline Jen [mailto:[EMAIL PROTECTED] > Sent: Friday, September 10, 2004 12:37 PM > To: Struts Users Mailing List > Subject: RE: [SOLVED]Cannot retrieve definition for form bean null > > > Hi, I have found the mistake. > >

RE: [SOLVED]Cannot retrieve definition for form bean null

2004-09-10 Thread Caroline Jen
Hi, I have found the mistake. The mistake is that is not a struts tag equivalent to HTML tag. --- Caroline Jen <[EMAIL PROTECTED]> wrote: > I experimented a little bit: > > 1. I changed all struts tags to html tags in my > messageForm.jsp and I also excluded the opening > and closing tag. >