Re: No getter error

2002-08-13 Thread Gemes Tibor
2002. augusztus 13. 16:36 dátummal Sri Sankaran ezt írtad: > I don't believe that to be the issue since I have re-started Tomcat > numerous times. I almost never restart tomcat, just use the manager servlet, and reload or stop/start the context only. The manager servlet is present in tomcat4 ser

RE: No getter error

2002-08-13 Thread Sri Sankaran
I don't believe that to be the issue since I have re-started Tomcat numerous times. Thanks SS -Original Message- From: Tim T. Young [mailto:[EMAIL PROTECTED]] Sent: Tuesday, August 13, 2002 10:27 AM To: Struts Users Mailing List Subject: Re: No getter error I get that error w

RE: No getter error

2002-08-13 Thread Sri Sankaran
Tried it -- same error :( P.S. Looked back at Arron's tutorials and confirmed that one simply needs to return Object[] -Original Message- From: honsali ilia [mailto:[EMAIL PROTECTED]] Sent: Tuesday, August 13, 2002 10:22 AM To: Struts Users Mailing List Subject: RE: No getter erro

Re: No getter error

2002-08-13 Thread Tim T. Young
I get that error when I add a property to a bean (with, in my case, Websphere still running) and then try to add that new property to a tag, and then run it. Struts caches the PropertyDescriptors and so I end up having to restart Websphere to pick up the changes. Tim

RE: No getter error

2002-08-13 Thread honsali ilia
s Mailing List Objet : RE: No getter error Yes, 'tis public and returns an Object[]. SS -Original Message- From: honsali ilia [mailto:[EMAIL PROTECTED]] Sent: Tuesday, August 13, 2002 10:07 AM To: Struts Users Mailing List Subject: RE: No getter error Are you sure that you have

RE: No getter error

2002-08-13 Thread Sri Sankaran
Yes, 'tis public and returns an Object[]. SS -Original Message- From: honsali ilia [mailto:[EMAIL PROTECTED]] Sent: Tuesday, August 13, 2002 10:07 AM To: Struts Users Mailing List Subject: RE: No getter error Are you sure that you have the getItemsArray() method in

RE: No getter error

2002-08-13 Thread honsali ilia
Are you sure that you have the getItemsArray() method in your com.sas.mis.qs.struts.bean.CartBean class?? -Message d'origine- De : Sri Sankaran [mailto:[EMAIL PROTECTED]] Envoye : mardi 13 aout 2002 13:45 A : Struts-User Objet : No getter error Using Struts 1.0.2 on Tomcat 4.0.2 I am

RE: No getter error -- Bizarre solution

2002-06-10 Thread Sri Sankaran
lto:[EMAIL PROTECTED]] Sent: Monday, June 10, 2002 9:55 AM To: 'Struts Users Mailing List' Subject: RE: No getter error I should've been more specific. I'm using Struts 1.0.2. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Monday, June 10, 20

RE: No getter error

2002-06-10 Thread Jennings, Christofer J.
I should've been more specific. I'm using Struts 1.0.2. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Monday, June 10, 2002 6:24 AM To: Struts Users Mailing List Subject: RE: No getter error I believe these issues are centered around the switc

RE: No getter error

2002-06-10 Thread Kevin . Bedell
properties of all different types. "Jennings, Christofer J." <[EMAIL PROTECTED]> on 06/10/2002 09:22:10 AM Please respond to "Struts Users Mailing List" <[EMAIL PROTECTED]> To: "'Struts Users Mailing List'" <[EMAIL PROTECTED]> cc:

RE: No getter error

2002-06-10 Thread Jennings, Christofer J.
I had this happen with the logic:equal tag. I wanted to compare a boolean value and the documentation makes no mention of boolean conversion so I made my getter return a String, but had two setters: one receiving a boolean and the other a String. My gut feeling is that the two setters somehow conf

Re: No getter error

2002-06-10 Thread Mark Nichols
Sri, In my recent nested iterate problem (see thread: Multiple Parameters from Multiple Links) the 'no getter in bean' error was caused when I inadvertently used the session attribute name rather than the id value on the iterate statement. Look closely at the text of the error message and make su

RE: No getter error

2002-06-07 Thread Shekhar Jain
I remember getting something similar when I was trying to populate the html:options tag with a Map object. Changing the code to use an ArrayList instead solved the problem for me. But Inever did understand the reason why one works and the other doesn't. Shekhar -Original Message- From:

RE: No getter error

2002-06-06 Thread Sri Sankaran
Replying to my own post... (Note to self) Take a good look at the the form action when an error is flagged with the form bean. Turns out I had a wrong form action which pointed the framework to some other form bean which indeed didn't have any such getter. Sigh! SS -Original Message