In order to define my own listener, I have disabled the default one using the following property:

<property as="xs:boolean" name="oxf.xforms.show-error-dialog"  value="false"/>

The Java Script I am using is:

ORBEON.xforms.Events.orbeonLoadedEvent.subscribe(function(eventName, eventData) {
                    var test=eventData.details;
                    alert(test);
                    });

I want this script to get executed when a session timeout occurs ? How can I execute this ?

Eventually, what I wanto achieve is that I want to display my own error message after a session timeout..

link|improve this question

80% accept rate
feedback

1 Answer

up vote 1 down vote accepted

There is no client-side event happening when a session timeout occurs. This is something that happens strictly on the server.

If you are trying to prevent a session timeout, the session heartbeat feature should go a long way. In a nutshell, as long as users keep a page open, it will ensure that their session doesn't expired on the server.

If you are trying to detect when a session expired, and redirect users to another page, you can do so by registering your own JavaScript error handler.

link|improve this answer
1  
Yea I did create my own listener and provided an alert msg on session timeout. – Akshay Feb 9 at 6:49
Excellent; thank you for the update. – avernet Feb 10 at 0:08
feedback

Your Answer

 
or
required, but never shown

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