Business controller

2002-09-04 Thread Mohan Radhakrishnan
Hi, Ours is a web reporter using struts. We have a business delegate that asks the report controller to get reports. The petstore sample uses events to loosely couple the business delegate and the business tier. Is there a standard struts way to do this ( reporter contains only

Re: Business controller

2002-09-04 Thread Ted Husted
The general model is to use the Action to call your business delegate. The Action bundles together whatever your delegate needs to know, invokes the delegate, and reacts to the outcome of the process. The BaseAction class in scaffold abstracts the general process so that you can just override