Re: Missing Property

2001-03-16 Thread Craig R. McClanahan
On Fri, 16 Mar 2001, Marty Fisher wrote: > I cleared up the 500 error below by enclosing the bean:write with a logic:present >tag. > As a newbie I'm happy to get it working and am interested in why it does. > > > > > > > Does your St

Re: Missing Property

2001-03-16 Thread Craig R. McClanahan
On Fri, 16 Mar 2001, Ken Beyer wrote: > > On the same thread... can someone tell me why I can't put > property="aBCDefg" with a bean getter of "getABCDefg()" > > Note the 2nd char being an uppercase "B". I were to make the "B" a > lowercase "b", it works. The problem stems from th

Re: Missing Property

2001-03-16 Thread Marty Fisher
I cleared up the 500 error below by enclosing the bean:write with a logic:present tag. As a newbie I'm happy to get it working and am interested in why it does. Thanks Marty Fisher wrote: > Thanks, that did the trick - sort of. There i

Re: Missing Property

2001-03-16 Thread Maya Muchnik
I think we have email archive for JavaBean convention. Here is a short answer: when a property getter method has two or more upper case letters, then the property is interpreted without change getter method. So if you have getAAA(), the property is AAA. If you have getAaA(), then the property is

Re: Missing Property

2001-03-16 Thread Ken Beyer
On the same thread... can someone tell me why I can't put property="aBCDefg" with a bean getter of "getABCDefg()" Note the 2nd char being an uppercase "B". I were to make the "B" a lowercase "b", it works. The problem stems from the 2nd char in the property name being a capital. I'm

Re: Missing Property

2001-03-16 Thread Marty Fisher
Thanks, that did the trick - sort of. There is the correct amount of data being displayed and then an usuall error. 1 U COMMAND1 2000-01-01 00:00:00.0 2000-01-01 00:00:00.0 P mfisher 2000-01-01 00:00:00.0 N 0 0 0 LOG 2 500 Internal Server Error /struts/jobQueue.do: javax.s

Re: Missing Property

2001-03-16 Thread Maya Muchnik
Good eye! Jean-Noel Ribette wrote: > > The jsp code: > > > > > > > > > > > > > > > > The form code: > > > > public String [] getJqRow () > > { > >. > >. > >. > >

Re: Missing Property

2001-03-16 Thread Jean-Noel Ribette
> The jsp code: > > > > > > > > The form code: > > public String [] getJqRow () > { >. >. >. > } > > The error: > > javax.servlet.jsp.JspException: No

RE: Missing Property

2001-03-16 Thread Matthias Strolz
n a test apllication: public List getResults(){ return myResults; } -Original Message- From: Marty Fisher [mailto:[EMAIL PROTECTED]] Sent: Freitag, 16. März 2001 14:19 To: [EMAIL PROTECTED] Subject: Missing Property Hi, Can a second pair of eyes point out the problem with the i

Missing Property

2001-03-16 Thread Marty Fisher
Hi, Can a second pair of eyes point out the problem with the iterate and form code below: The jsp code: The form code: public String [] getJqRow () { . . .