RE: Where is Execute method..?

2002-07-16 Thread Craig R. McClanahan
On Tue, 16 Jul 2002, Manish_Purang wrote: > Date: Tue, 16 Jul 2002 15:19:48 +0530 > From: Manish_Purang <[EMAIL PROTECTED]> > Reply-To: Struts Users Mailing List <[EMAIL PROTECTED]> > To: Struts Users Mailing List <[EMAIL PROTECTED]> > Subject: RE: Where is E

RE: Where is Execute method..?

2002-07-16 Thread Galbreath, Mark
You mean, "execute makes its first appearance from 1.1 b[sic]" If you are really hung up on an execute() method, just extend Action and write an execute() method that calls super.perform()(what we did before we upgraded to 1.1b-1 so we wouldn't have to go back and rewrite all the method calls

RE: Where is Execute method..?

2002-07-16 Thread Adolfo Miguelez
.* does not exist execute();. You must implement perform(). >From: Manish_Purang <[EMAIL PROTECTED]> >Reply-To: "Struts Users Mailing List" <[EMAIL PROTECTED]> >To: Struts Users Mailing List <[EMAIL PROTECTED]> >Subject: RE: Where is Execute method..? >Date:

RE: Where is Execute method..?

2002-07-16 Thread Manish_Purang
thnx for the quick reply..! that means we don't have perform in the 1.1b and performs makes its first appearance from 1.1 b right...? -Original Message- From: Adolfo Miguelez [mailto:[EMAIL PROTECTED]] Sent: Tuesday, July 16, 2002 3:12 PM To: [EMAIL PROTECTED] Subject: Re: Whe

Re: Where is Execute method..?

2002-07-16 Thread Adolfo Miguelez
execute() appears from version 1.1b1. It replaces de perform(), despite Struts1.1b1 maintains performs() for backwards compatibility. Adolfo >From: Manish_Purang <[EMAIL PROTECTED]> >Reply-To: "Struts Users Mailing List" <[EMAIL PROTECTED]> >To: [EMAIL PROTECTED] >Subject: Where is Execute met