The "one Action multiple jsps/tiles"-problem with a twist.

2004-10-18 Thread Bent André Solheim
Hi Struts users, I am developing a web based reporting system using Struts, and one requirement is that each customer can have their own tailored version of the reports. I use tiles to define each report page for each customer, and for each page for each customer I define a element in the . In t

Re: The "one Action multiple jsps/tiles"-problem with a twist.

2004-10-18 Thread Jeff Beal
The first thing to remember is that a Forward is just a Java object. You can create them and manipulate them in any way that you want. For instance, in our application we didn't want the users to use the "Back" button on their browser. We hid the toolbar, disabled the necessary shortcuts, and

Re: The "one Action multiple jsps/tiles"-problem with a twist.

2004-10-18 Thread Bent André Solheim
Thank you, Jeff, for the detailed explanation - it was exactly what I was looking for! This puts me on track to reduce code complexity and increase maintainability quite a bit. The custom RequestProcessor did the trick. Thanks again! Best Regards, Bent. On Mon, 18 Oct 2004 11:01:25 -0400, Jeff