Re: design question about action chaining

2003-04-01 Thread Paul Yunusov
On Tuesday 01 April 2003 02:30 pm, Thorin Linderholm wrote: I have been tasked with porting an existing web application with it's own proprietary controller architecture to using Struts. As they are both web controller architectures, they have many similarities, but I'm running into one

Re: design question about action chaining

2003-04-01 Thread David Graham
I think Filters would be a good choice for your needs. You can define a filter for each piece of logic and then configure them in web.xml for groups of pages. You'll need to put related pages in the same path scheme so that you can map a filter to the group instead of each page. David

RE: design question about action chaining

2003-04-01 Thread Thorin Linderholm
' controller (which seems a bit redundant to me.) -Original Message- From: Paul Yunusov [mailto:[EMAIL PROTECTED] Sent: Tuesday, April 01, 2003 11:43 AM To: Struts Users Mailing List Subject: Re: design question about action chaining On Tuesday 01 April 2003 02:30 pm, Thorin Linderholm wrote

RE: design question about action chaining

2003-04-01 Thread Jacob Hookom
I had come to the conclusion that Struts Actions are moreover 'View Adapter Components' or VAC's (you can quote me on that one!) and should not be relied on for handling business logic or data collection by any means, just as a facsimile for pulling model/controller data into the view. I wrote a

RE: design question about action chaining

2003-04-01 Thread Thorin Linderholm
To: [EMAIL PROTECTED] Subject: Re: design question about action chaining I think Filters would be a good choice for your needs. You can define a filter for each piece of logic and then configure them in web.xml for groups of pages. You'll need to put related pages in the same path scheme so

Re: design question about action chaining

2003-04-01 Thread Paul Yunusov
Yunusov [mailto:[EMAIL PROTECTED] Sent: Tuesday, April 01, 2003 11:43 AM To: Struts Users Mailing List Subject: Re: design question about action chaining On Tuesday 01 April 2003 02:30 pm, Thorin Linderholm wrote: I have been tasked with porting an existing web application with it's own

Re: design question about action chaining

2003-04-01 Thread Igor Shabalov
point you will wonder which is more cumbersome: coding Action classes or having a mile-long struts-config.xml. Paul -Original Message- From: Paul Yunusov [mailto:[EMAIL PROTECTED] Sent: Tuesday, April 01, 2003 11:43 AM To: Struts Users Mailing List Subject: Re: design question about

RE: design question about action chaining

2003-04-01 Thread David Graham
Graham [mailto:[EMAIL PROTECTED] Sent: Tuesday, April 01, 2003 11:52 AM To: [EMAIL PROTECTED] Subject: Re: design question about action chaining I think Filters would be a good choice for your needs. You can define a filter for each piece of logic and then configure them in web.xml for groups

Re: design question about action chaining

2003-04-01 Thread Paul Yunusov
: Re: design question about action chaining On Tuesday 01 April 2003 02:30 pm, Thorin Linderholm wrote: I have been tasked with porting an existing web application with it's own proprietary controller architecture to using Struts. As they are both web controller architectures

Re: design question about action chaining

2003-04-01 Thread Igor Shabalov
-Original Message- From: Paul Yunusov [mailto:[EMAIL PROTECTED] Sent: Tuesday, April 01, 2003 11:43 AM To: Struts Users Mailing List Subject: Re: design question about action chaining On Tuesday 01 April 2003 02:30 pm, Thorin Linderholm wrote: I have been tasked with porting an existing web

Re: design question about action chaining

2003-04-01 Thread Kris Schneider
they logically sit in front of Struts handling requests before Struts gets them. David From: Thorin Linderholm [EMAIL PROTECTED] Reply-To: Struts Users Mailing List [EMAIL PROTECTED] To: 'Struts Users Mailing List' [EMAIL PROTECTED] Subject: RE: design question about action chaining Date: Tue, 1 Apr 2003 12

RE: design question about action chaining

2003-02-03 Thread Greg.Reddin
Thanks, Ted, for clarifying these issues for me. -Original Message- From: Ted Husted [mailto:[EMAIL PROTECTED]] Sent: Sunday, February 02, 2003 11:06 AM To: [EMAIL PROTECTED] Subject: Re: design question about action chaining In Patterns of Enterprise Application Architecture [1

Re: design question about action chaining

2003-02-02 Thread Ted Husted
In Patterns of Enterprise Application Architecture [1], Martin Fowler [2] lays out two basic patterns for handling business logic [3]. * Transaction Script - Organizes business logic by procedures where each procedure handles a single request from the presentation. * Domain Model - An object