Re: Action Class - No of instances

2004-04-08 Thread Craig McClanahan
Senthivel U S wrote: Greetings, Thanks Mr Craig and Mr Niall. Yes we are having sub application modules and we are having one common action Class for some action mappings (design based on struts-scaffold - Refer: Struts In Action).I have to check it whether it is for module or for application. A

RE: Action Class - No of instances

2004-04-07 Thread Andrew Hill
[mailto:[EMAIL PROTECTED] Sent: Wednesday, 7 April 2004 15:06 To: 'Struts Users Mailing List' Subject: Action Class - No of instances Greetings, I have one more doubt, if one instance per module/application, Is not a performance bottleneck. Rgds, Sen Greetings, Thanks Mr Craig and Mr N

Action Class - No of instances

2004-04-07 Thread Senthivel U S
PM To: Struts Users Mailing List Subject: Re: Action Class - No of instances I think it is per Struts module rather than webapp (in Struts 1.1) - actions are cached in the RequestProcessor and each Struts module has its own RequestProcessor. Do you have the same Action class in use in different

Action Class - No of instances

2004-04-07 Thread Senthivel U S
think the struts specification is slightly different) Rgds, Sen -Original Message- From: Niall Pemberton [mailto:[EMAIL PROTECTED] Sent: Tuesday, April 06, 2004 10:32 PM To: Struts Users Mailing List Subject: Re: Action Class - No of instances I think it is per Struts module rather

Re: Action Class - No of instances

2004-04-06 Thread Niall Pemberton
aig R. McClanahan" <[EMAIL PROTECTED]> To: "Struts Users Mailing List" <[EMAIL PROTECTED]> Sent: Tuesday, April 06, 2004 6:56 PM Subject: Re: Action Class - No of instances > Senthivel U S wrote: > > >Greetings, > > > >Programming Jakarta Struts by C

Re: Action Class - No of instances

2004-04-06 Thread Craig R. McClanahan
Senthivel U S wrote: Greetings, Programming Jakarta Struts by Chuck Cavaness book says always there will be only one instance of Action Class but we have checked with the application and found that there are more than one instance of same action class even though the same instance is serving simu

RE: Action Class - No of instances

2004-04-06 Thread Takhar, Sandeep
Should be one per classloader... A user could create one in the code base as well if the wanted to. sandeep -Original Message- From: Senthivel U S [mailto:[EMAIL PROTECTED] Sent: Tuesday, April 06, 2004 1:58 AM To: 'Struts Users Mailing List' Subject: Action Class - No of

Action Class - No of instances

2004-04-05 Thread Senthivel U S
Greetings, Programming Jakarta Struts by Chuck Cavaness book says always there will be only one instance of Action Class but we have checked with the application and found that there are more than one instance of same action class even though the same instance is serving simultaneous requests. Pl