best practices for ActionForm flow control

2003-08-31 Thread Seyhan BASMACI (Internet Yazilimlari Yetkilisi)
When the actionForm validate method returns errors, struts direct the control to the jsp page specified in the input parameter of form mapping. is it possible to direct control to the action class in case of error inside the actionForm validate method without making extra coding effort, or

RE: flow control decision making

2003-01-21 Thread Nelson, Laird
Group, Fidelity eBusiness (Veritude) * (508) 357-3142 * [EMAIL PROTECTED] mailto:[EMAIL PROTECTED] * [EMAIL PROTECTED] mailto:[EMAIL PROTECTED] -Original Message- From: Tony Baity [mailto:[EMAIL PROTECTED]] Sent: Monday, January 20, 2003 11:43 PM To: [EMAIL PROTECTED] Subject: flow

Re: flow control decision making

2003-01-21 Thread Tony Baity
PROTECTED] Subject: flow control decision making Date: Mon, 20 Jan 2003 20:43:25 -0800 (PST) Hello, I've been off the list for a while... busy coding up about 60 action classes and all the JNDI behind them. One thing I found about using the struts_config file is that it is a lot easier to refactor

flow control decision making

2003-01-20 Thread Tony Baity
Hello, I've been off the list for a while... busy coding up about 60 action classes and all the JNDI behind them. One thing I found about using the struts_config file is that it is a lot easier to refactor, fix flawed business rules dealing with page flow, etc in the struts config xml than

Re: flow control decision making

2003-01-20 Thread David Graham
] Subject: flow control decision making Date: Mon, 20 Jan 2003 20:43:25 -0800 (PST) Hello, I've been off the list for a while... busy coding up about 60 action classes and all the JNDI behind them. One thing I found about using the struts_config file is that it is a lot easier to refactor, fix

Re: page flow control

2001-05-18 Thread Tom Miller
Laurent and Matthias Has the action result enhancement to Matthias' code available? I think I would like to try using this system. Thanks Tom Miller Matthias Bauer wrote: It was me, who posted the struts enhancement for flow control. The enhancement provides flow control and a pretty

Re: page flow control

2001-05-17 Thread Matthias Bauer
It was me, who posted the struts enhancement for flow control. The enhancement provides flow control and a pretty granular authentication feature. It is described in a mail with the subject Re: Struts questions for evaluation - Struts framework enhancement For my needs the previous action

page flow control

2001-05-16 Thread Nathan Coast
Hi, In the site I'm developing, there are sections that have forms on consecutive pages, I want to guarantee that pages are navigated: page1 - page2 - pageN. At the same time allowing back and forward navigation to change values entered on previous pages. After the last submit, the only

RE: page flow control

2001-05-16 Thread Nanduri, Amarnath
Write a flow controller which does this. Look at the pet-store example app for inspiration. cheers, Amar.. -Original Message- From: Nathan Coast [mailto:[EMAIL PROTECTED]] Sent: Wednesday, May 16, 2001 10:09 AM To: struts-user Subject: page flow control Hi, In the site I'm developing

Re: page flow control

2001-05-16 Thread Jeff Trent
Do search for Wizard in mail-archive.com under struts-user. You'll find a few examples. - jeff - Original Message - From: Nathan Coast [EMAIL PROTECTED] To: struts-user [EMAIL PROTECTED] Sent: Wednesday, May 16, 2001 10:09 AM Subject: page flow control Hi, In the site I'm

RE: page flow control

2001-05-16 Thread Laurent Delvaux
Some one has ever post a set a class than enable a sort of flow control. You can find it on the malling list archive, the subject is Re: Struts questions for evaluation - Struts framework enhancement. He uses the previous action path, as a identifier... I personnaly think that previous action

Re: page flow control

2001-05-16 Thread Robert Leland
Lets work out a diagram that explains the flow, Tokens should be able to do this.. if there is both a SaveXXXAction and EditXXXAction for all JSP accessed, Action JSP Page EditPage1Set Token

Re: page flow control

2001-05-16 Thread Tharwat Abdul-Malik
Search the archives for implementing Wizard style interfaces. There have been several posts on how to accomplish it. - Original Message - From: Nathan Coast [EMAIL PROTECTED] To: struts-user [EMAIL PROTECTED] Sent: Wednesday, May 16, 2001 10:09 AM Subject: page flow control Hi

RE: alternate flow control

2001-03-08 Thread Nanduri, Amarnath
Thanks a lot. It surely helps. Amar.. -Original Message- From: Martin Cooper [mailto:[EMAIL PROTECTED]] Sent: Wednesday, March 07, 2001 8:12 PM To: [EMAIL PROTECTED] Subject: Re: alternate flow control The names "success" and "failure" are arbitrary. You can act

alternate flow control

2001-03-05 Thread Nanduri, Amarnath
In the sample application that's part of the Struts distribution, there are two additional attributes in action.xml - success and failure. These attributes define which JSP page should be forwarded to which request based on a success and failure condition of the validate method of the ActionForm

flow control

2001-02-28 Thread Nanduri, Amarnath
Hello you beautiful people, I am a newbie to struts and our company has to decide whether to go with struts or not. I have a very important question that will decide the fate of our project... Basically we want to control the flow (of the user) when he goes to various pages. For

Re: flow control

2001-02-28 Thread Craig Tataryn
You can definitly do this in Struts as it stands (correct me if I'm wrong). What will help this along is the Workflow Processing TODO in the TODO 1.1 document on the struts homepage. When that is completed you will be able to map out this flow in some graphical type means. Craig T. "Nanduri,

Re: flow control

2001-02-28 Thread bram
You defitnely can do that, altough its still a bit messy, and after checking other sources, mailings I noticed there are basicly 2 kinds of ways to tackle this: 1: one actionservlet, one formbean and let the actionservlet decide wich form to show, the bean has to be in the session for incremental

Re: flow control

2001-02-28 Thread Martin Cooper
1:41 AM Subject: Re: flow control You defitnely can do that, altough its still a bit messy, and after checking other sources, mailings I noticed there are basicly 2 kinds of ways to tackle this: 1: one actionservlet, one formbean and let the actionservlet decide wich form t