XPages Setting Ajax Partial Page Refresh Request Timeout

Hello,

when updating an element in XPages with an Ajax partial page refresh I always get a “timeout exceeded” dialog box from the browser asking me to submit the whole page.

The reason for this is that I am asking the server to perform some operations which take quite a while before the element is actually updated.

Is there any way to set the request timeout for the ajax partial page refresh to another value in the Domino Designer?

Thanks in advance

Steve

Subject: partial page refresh timeout

I am having the same issue.

Is there a solution?

Subject: found it

This is the solution:

in any client-side js, override XSP.submitLatency, i.e.:

XSP.submitLatency = 60000; //timeout limit increased to 60 seconds

Thanks Tim.