Hi guys,

please help a total webflow/jsf noob out!

I'm looking for a way to get the same functionality as with a HandlerInterceptor in Spring MVC.
That is, I want to do some checks before the flow starts, possibly redirecting to an error site,
store something in a session scoped bean and write to a logging table after the request.

In our MVC application, I used a HandlerInterceptor to filter out invalid characters and do some logging
after the controller ended.

My HandlerInterceptor doesn't get called by JSF/Webflow.
I tried a OncePerRequestFilter, but it didn't get my beans wired into it.

So, how can I do this in webflow?

Thanks a lot!