Re: teardown

2008-08-20 Thread Wes Wannemacher
On Wed, 2008-08-20 at 22:51 -0700, ravi_eze wrote: > I would like to either make each launch of the jsp create a new exclusive > running instance of the action > : if i got u right but this is already happening. Each url call makes a > new actionclass instance. In Struts 2, actions are insta

Re: teardown

2008-08-20 Thread ravi_eze
I would like to either make each launch of the jsp create a new exclusive running instance of the action : if i got u right but this is already happening. Each url call makes a new actionclass instance. -- View this message in context: http://www.nabble.com/teardown-tp19074593p19082819

Re: teardown

2008-08-20 Thread Musachy Barroso
If unloading the classes is a must, and not just "remove" the actions, then yes, the OSGi plugin would be the only way to go, but considering that it is in the sandbox, and it is a moving target, it wouldn't be my first option. musachy On Wed, Aug 20, 2008 at 8:08 PM, Dustin Pearce <[EMAIL PROTEC

Re: teardown

2008-08-20 Thread Dustin Pearce
What about Don's OSGi plugin? I have not tried it buy it seems like a good fit, if I understand the question. Sent from my iPhone On Aug 20, 2008, at 10:47 AM, "Musachy Barroso" <[EMAIL PROTECTED]> wrote: I guess you could write a custom action mapper, the mapper would detect that the request

Re: teardown

2008-08-20 Thread Musachy Barroso
I guess you could write a custom action mapper, the mapper would detect that the request is for one of the "black listed" actions and return null. musachy On Wed, Aug 20, 2008 at 1:40 PM, cpanon <[EMAIL PROTECTED]> wrote: > Hello > I have a demo that is not fully ready,(yes then I should not show

teardown

2008-08-20 Thread cpanon
Hello I have a demo that is not fully ready,(yes then I should not show it,grin) and I would like to either make each launch of the jsp create a new  exclusive running instance of the action or be able to lifecycle out of instantiation an all instances of a particular action and jsp.  I know thi