Am facing issue with session timeout. Say for instance, the user logs into the application and he waits for 30 mins (session timeout time) and then tries to get a service through remote object.Ideally speaking, since the session has timeout the user shouldn't be able to hit the remote object, but this is happening the other way round.
web.xml entry : 30 Also, after 30 minutes am getting to see the log that seesion is invalidated,
[BlazeDS][DEBUG] FlexSession with id 'NptXY........5559488' for an Http-based client connection has been invalidated.
But still if user tries to invoke the new service, the remote service call is happening. I want it to throw some exception when the session is expired where in I can catch it and show to the user as " Session Expired!!!"
Please let me know if am missing anything. Please its really urgent.
Note: Server: Weblogic 9.1
Also Note that, am not using Spring framework. Its just a basic remoting-config/Services-config calls.
Thanks.