Re: How to pass initialise parameters to action class

2001-10-26 Thread Alex Colic
Thanks for all the info. I guess in my action class I will have to create an empty constructor that initialises that value. Alex

RE: How to pass initialise parameters to action class

2001-10-25 Thread Alexander Jesse
]] Sent: Wednesday, October 24, 2001 4:31 PM To: [EMAIL PROTECTED] Subject: How to pass initialise parameters to action class Hi, I have an action class that has a variable that I want set from the web.xml file. To prevent the action class from reading the xml file everytime it is accessed I wanted

RE: How to pass initialise parameters to action class

2001-10-25 Thread Nocera, Robert
Colic [mailto:[EMAIL PROTECTED]] Sent: Wednesday, October 24, 2001 10:31 AM To: Struts Subject: How to pass initialise parameters to action class Hi, I have an action class that has a variable that I want set from the web.xml file. To prevent the action class from reading the xml file everytime

RE: How to pass initialise parameters to action class

2001-10-25 Thread Martin, Margaret
9:31 AM To: Struts Subject: How to pass initialise parameters to action class Hi, I have an action class that has a variable that I want set from the web.xml file. To prevent the action class from reading the xml file everytime it is accessed I wanted to set the variable once in the action

Re: How to pass initialise parameters to action class

2001-10-25 Thread Jason . Gola
: Subject: How to pass initialise parameters to action class 10/24/2001 09:30 AM

How to pass initialise parameters to action class

2001-10-24 Thread Alex Colic
Hi, I have an action class that has a variable that I want set from the web.xml file. To prevent the action class from reading the xml file everytime it is accessed I wanted to set the variable once in the action classes init() method. After looking at the action class I see that there is no