I have an application set up using jaas module for login. There are ajax function calls in the application so I am experencing the notorious ajax session timeout problem, which means a ugly login page is getting into a page's place holder if session is timeout. I am now fixing it in an ugly way by checking if the return ajax result contains the login form, but apparently, this is not a good way.
I tried to add a filter to check if session has timed out and return something meaningful for ajax request. But it seems that jaas runs prior to servlet filters. I have checked and acknowledged valve is some kind of "interceptor" which runs before jaas. It seems to be the thing I needed.But it's container-base not application-based, which is not so application-frieldly IMO. So I am asking if this is the only way to fulfil what I am trying to do or are there any better alternatives.
I am using Jboss AS 4.2.3
Thanks.