Re: Attributes Initialization

2005-01-07 Thread Eli Segev
or all the input that were provided to me by various people on the list. --- Wendy Smoak <[EMAIL PROTECTED]> wrote: > From: "Eli Segev" <[EMAIL PROTECTED]> > > Validation for the init action is off. Its > 'execute' method has no call > to super.exec

Re: AW: Attributes Initialization

2005-01-07 Thread Eli Segev
. > -Ursprüngliche Nachricht- > Von: [EMAIL PROTECTED] [mailto:user- > [EMAIL PROTECTED] Im Auftrag von Eli > Segev > Gesendet: Donnerstag, 6. Januar 2005 23:40 > An: Struts Users Mailing List > Betreff: Re: Attributes Initialization > > I am aware that my 'r

RE: Attributes Initialization

2005-01-07 Thread Eli Segev
mitAction" > input="/submit.jsp" > name="submitForm" > scope="request" > validate="true"> > > Which will forward to your successful submit page. > > Which of these is not having the execute method being executed? > >

RE: Attributes Initialization

2005-01-07 Thread Eli Segev
David, The throws clause is in there. It just got cut in the cut and paste to the email. "David G. Friedman" <[EMAIL PROTECTED]> wrote: Eli, Where is the throws clause to match the proper signature? Regards, David -Original Message- From: Eli Segev [mailto:[EMAIL

Re: Attributes Initialization

2005-01-06 Thread Eli Segev
turned off (if i remember correctly, unless there is some other way to do it) eg and index.jsp should change to <%@ taglib uri="/tags/struts-logic" prefix="logic" %> Eli Segev wrote: Wendy, I know that t

RE: Attributes Initialization

2005-01-06 Thread Eli Segev
for your execute() method? The only time I've ever had execute() get skipped was when I used the wrong parameters to it so I was, essentially, creating a dummy execute method. Regards, David -Original Message- From: Eli Segev [mailto:[EMAIL PROTECTED] Sent: Thursday, January 06, 20

Re: Attributes Initialization

2005-01-06 Thread Eli Segev
n class. It is used only after a form has been submitted. Wendy Smoak <[EMAIL PROTECTED]> wrote: From: "Eli Segev" > index.jsp redirect to 'submit', which is defined as a global forward as 'submit.do'. If you're redirecting to submit.do, given the conf

RE: Attributes Initialization

2005-01-06 Thread Eli Segev
t's url: /submit.do type="segev.SubmitAction" input="/submit.jsp" name="submitForm" scope="request" validate="true"> Which will forward to your successful submit page. Which of these is not having the execute method being executed? >

Re: Attributes Initialization

2005-01-06 Thread Eli Segev
;t know where. >Can anyone suggest why the 'execute' is never called before the >initial display of the form? > >--- >Eli Segev > > > > > >- >To unsubscribe, e-mail: [EMAIL PROTECTED] &

Re: Attributes Initialization

2005-01-06 Thread Eli Segev
there is no difference in behavior. Wendy Smoak <[EMAIL PROTECTED]> wrote: From: "Eli Segev" > Here is the portion that defines the action: > > > type="segev.SubmitAction" > input="/submit.jsp" > name="submitForm" > s

Re: Attributes Initialization

2005-01-06 Thread Eli Segev
Wendy, Here is the portion that defines the action: Obviously this definition does not make the initial action go through the 'execute' method. I don't know what changes are necessary here. Any suggestions? The starting page is index.jsp that looks like

Re: Attributes Initialization

2005-01-06 Thread Eli Segev
I think that >the problem is somewhere in re-direction, but I don't know where. >Can anyone suggest why the 'execute' is never called before the >initial display of the form? > >--- >Eli Segev > > > > &