Hi,
My Application : I have java remoting services(more then 25) on my (Tomcat BlazeDS)server which are called from my Flex client application.
My Requirment : I need to collect stats on them like how much time each service is taking(total time).
There are three approaches I can do this in my opinion(may be more)
1) change each service and add timer at beginning and ending. --- bad practice 2) I can also use AOP but I feel its an over kill for this requirement. --- over kill 3) servlet Filter. ---- Good option
I really like option three but I am not sure how to do this with BlazeDS. Can it be done and if so any example/direction would be great.
thank you