On 6/5/06, Howard Lewis Ship <[EMAIL PROTECTED]> wrote:
Sounds like you need a step between the engine and the engine service's service() method that you can hook, to apply to all services. I.e. void executeService(IEngineService service, IRequestCycle cycle); This could be created as a chain-of-command, allowing you to hook into it. Alternately, we could define a EngineServiceFilter: void service(IRequestCycle cycle, IEngineService delegate) And make it easy to build up filters for specific services, or for all services.
Nice to see you back here Howard. Yes, that is exactly what I would need! I was going to file a request for that type of interface in the JIRA. I'm not sure if passing the IEngineService reference is even necessary... it can be currently retrieved from the requestcycle. Thanks, Henri.
