Re: Which method sets bean into desired scope

2006-01-03 Thread Niall Pemberton
Theres no way of extending it since all the logic is in a single execute(ActionContext) method - however you can simply create your own Command implementation and configure the ComposableRequestProcessor in Struts 1.3 to use your implementation. Confuguring Struts 1.3 to use your own command you c

Re: Which method sets bean into desired scope

2006-01-03 Thread Jim Reynolds
Naill, Is there a way to extend the CreateActionForm class? It is called from in the RequestProcessor Class? On 1/3/06, Niall Pemberton <[EMAIL PROTECTED]> wrote: > Its still in the processActionForm method in Struts 1.2.x - but in Struts > 1.3 its moved into the CreateActionForm command: > > h

Re: Which method sets bean into desired scope

2006-01-03 Thread Niall Pemberton
Its still in the processActionForm method in Struts 1.2.x - but in Struts 1.3 its moved into the CreateActionForm command: http://svn.apache.org/viewcvs.cgi/struts/action/trunk/src/java/org/apache/struts/chain/commands/ There is also another place that creates the form beans - the jsp tag will a

Re: Which method sets bean into desired scope

2006-01-03 Thread David Evans
In struts 1.1 (the only one i have the source for) its in the processActionForm method. dave On Tue, 2006-01-03 at 08:38 -0600, Jim Reynolds wrote: > Hello and Happy New Year > > I am trying to figure out which method (of the many) in the request > processor physically takes the form bean and s

Re: Which method sets bean into desired scope

2006-01-03 Thread Srinivas Jadcharla
May be this article is helpful.If it is helpful please let us know. http://www.onjava.com/pub/a/onjava/2004/11/10/ExtendingStruts.html On 1/3/06, Jim Reynolds <[EMAIL PROTECTED]> wrote: > > Hello and Happy New Year > > I am trying to figure out which method (of the many) in the request > proces

Which method sets bean into desired scope

2006-01-03 Thread Jim Reynolds
Hello and Happy New Year I am trying to figure out which method (of the many) in the request processor physically takes the form bean and sets it into the desired scope? Based upon the configuration for said Action Mapping. Regards ---