vote up 1 vote down star

I have a flex client that makes service calls to a tomcat server running BlazeDS. I would like to gracefully handle server session timeouts in this environment.

I do have security constraints on the service, so the client authenticates against a remote object by initializing a ChannelSet based on the destination, and then logging in using that ChannelSet.

After the user is authenticated, if they go get a (long) cup of coffee, their session will inevitably time out.

I would like the client to detect the timeout, and return the user back to the login page, with the appropriate informational messages.

But I am having difficulty finding the best way to detect this timeout from the client. Is it possible, or must I have the server throw an error when the timeout occurs?

Thanks!

flag

2 Answers

vote up 0 vote down

Look at the docs and see if an event is fired when the connection is disconnected. I would imagine that there is. If not, use try/catch around your connections and catch any connection related issues. If you do, redirect your app and notify the user. You will probably need to play with it to find the exact error codes being thrown for the connection issues but it should be fairly easy in debugging.

link|flag
vote up 0 vote down

I'd like to know if anyone ever found a proper solution for this. the Consumer does have a disconnect event that's triggered and blazeds sends over a very specific error message saying the session has timed out. My application show the login screen properly, great.

Problem is, when I try to relog back in, there's nothing being sent to the server. Like if the consumer can't connect back to the server. Is there something the consumer needs to do? I tried a slew of things but always with the same results. Only way to make it work is to refresh the browser.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.