Re: Struts 1.0.2 Dynamic Forward

2004-06-19 Thread bmcgovern2004
Rick, Sorry if I the problem def I supplied wasn't complete enough. I was trying to avoid keyboard diarrhea. I'm sure that I'm making this more difficult than it need be. :-) I have a number of mappings. Each with its own unique action, form, and set of forwards comprising the jsp screen

Re: Struts 1.0.2 Dynamic Forward

2004-06-18 Thread Rick Reumann
bmcgovern2004 wrote: I've successfully written a simple struts application. I have a jsp that presents a listbox for user selection. I have multiple action "flows" that may need to utilize the standard screen somewhere in the flow. Can you be a little more specific about what you want to accom

RE: Struts 1.0.2 Dynamic Forward

2004-06-18 Thread Geeta Ramani
Sure. Try it and you will see..:) Geeta > -Original Message- > From: bmcgovern2004 [mailto:[EMAIL PROTECTED] > Sent: Friday, June 18, 2004 3:32 PM > To: [EMAIL PROTECTED] > Subject: Re: Struts 1.0.2 Dynamic Forward > > > Geeta, >Thanks for the reply. I

Re: Struts 1.0.2 Dynamic Forward

2004-06-18 Thread bmcgovern2004
Geeta, Thanks for the reply. If I create an ActionForward on the fly in my Action class, can I also create or acquire the corresponding ActionForm to prepopulate it before returning the ActionForward? --- In [EMAIL PROTECTED], "Geeta Ramani" <[EMAIL PROTECTED]> wrote: > ps.s just noticed yo

RE: Struts 1.0.2 Dynamic Forward

2004-06-18 Thread Geeta Ramani
ps.s just noticed your subject line: If you want to create an ActionForward on the fly in your CAtion class, that's ok too. Just create a new ActionForward, set its path and return that in your perform/execute method. Regards, Geeta > -Original Message- > From: bmcgovern2004 [mailto:[EM

RE: Struts 1.0.2 Dynamic Forward

2004-06-18 Thread Geeta Ramani
Hi bmcgovern2004: I'm not sure I entirely understand what you want to do, but here's one answer anyway: > In an action class, is it possible to switch gears, populate a new > form type with some acquired values, and forward to a different > action mapping that uses the new form? Yes. Nothing