RE: NPE in ActionForm where it is not be possible

2004-07-14 Thread Shapira, Yoav
-Original Message- From: Richard Mixon (qwest) [mailto:[EMAIL PROTECTED] Sent: Tuesday, July 13, 2004 6:26 PM To: Tomcat Users List Subject: RE: NPE in ActionForm where it is not be possible QM mailto:[EMAIL PROTECTED] wrote: On Sat, Jul 10, 2004 at 12:31:21PM -0700, Richard Mixon (qwest

RE: NPE in ActionForm where it is not be possible

2004-07-14 Thread Richard Mixon (qwest)
Informatics -Original Message- From: Richard Mixon (qwest) [mailto:[EMAIL PROTECTED] Sent: Tuesday, July 13, 2004 6:26 PM To: Tomcat Users List Subject: RE: NPE in ActionForm where it is not be possible QM mailto:[EMAIL PROTECTED] wrote: On Sat, Jul 10, 2004 at 12:31:21PM -0700, Richard

RE: NPE in ActionForm where it is not be possible

2004-07-14 Thread Shapira, Yoav
Millennium Research Informatics -Original Message- From: Richard Mixon (qwest) [mailto:[EMAIL PROTECTED] Sent: Tuesday, July 13, 2004 6:26 PM To: Tomcat Users List Subject: RE: NPE in ActionForm where it is not be possible QM mailto:[EMAIL PROTECTED] wrote: On Sat, Jul 10, 2004

RE: NPE in ActionForm where it is not be possible

2004-07-14 Thread Richard Mixon (qwest)
Shapira Millennium Research Informatics -Original Message- From: Richard Mixon (qwest) [mailto:[EMAIL PROTECTED] Sent: Tuesday, July 13, 2004 6:26 PM To: Tomcat Users List Subject: RE: NPE in ActionForm where it is not be possible QM mailto:[EMAIL PROTECTED] wrote: On Sat, Jul 10

RE: NPE in ActionForm where it is not be possible

2004-07-13 Thread Richard Mixon (qwest)
QM mailto:[EMAIL PROTECTED] wrote: On Sat, Jul 10, 2004 at 12:31:21PM -0700, Richard Mixon (qwest) wrote: The log variable is initialized when the Action form is instantiated, like so: public class ChartWizardForm extends ActionForm implements java.io.Serializable { private transient

RE: NPE in ActionForm where it is not be possible

2004-07-13 Thread Richard Mixon (qwest)
Craig Berry mailto:[EMAIL PROTECTED] wrote: From:QM [mailto:[EMAIL PROTECTED] I notice, you define/initialize the instance variable log at its declaration point. Humor me: what happens if you initialize log in the ctor? Or for that matter, why not make the log member static?

Re: NPE in ActionForm where it is not be possible

2004-07-11 Thread QM
On Sat, Jul 10, 2004 at 12:31:21PM -0700, Richard Mixon (qwest) wrote: : The log variable is initialized when the Action form is instantiated, : like so: : public class ChartWizardForm extends ActionForm implements : java.io.Serializable { : private transient Log log = :

RE: NPE in ActionForm where it is not be possible

2004-07-11 Thread Craig Berry
From: QM [mailto:[EMAIL PROTECTED] I notice, you define/initialize the instance variable log at its declaration point. Humor me: what happens if you initialize log in the ctor? Or for that matter, why not make the log member static? There's no harm in one log instance being shared by