PDA

View Full Version : Using AOP + log to trace end user actions


Thibaut
11-17-2005, 10:18 AM
Hi,

I'd like to know if someone already used spring aop with windows.forms apps : the idea behind this is to have a high level log with only user actions on the interface, plus main actions of the app itself (like : connect to the server, etc).

Any feedback on such a use ? (i'd need to automagically intercept most event handlers on GUI for instance...)

kind regards

Thibaut Barrère

Bruno Baia
11-17-2005, 02:39 PM
Salut Thibaut,

it can depend of ur architecture :
If u use the design pattern Command, u can easily catch all users actions with an advice that intercept all ICommand.Execute method calls.

Thibaut
11-17-2005, 02:43 PM
Salut MaRuXeLo

nice point, clearly a path that I'd follow on a from scratch project - unfortunately the project I want to implement that on is not relying very strictly on this pattern (ugh..)

anyway thanks for the feedback