Any way to extend the timeout on individual HTTP requests?

We've built an admin page/widget which uses ajax calls to a helper 'attachment' within the widget itself which does the work.. we call it like this in the front-end JS;

## Simplified code for ease of reading
jQuery.telligent.evolution.post({
	url: '$core_v2_encoding.JavascriptEncode($core_v2_widget.GetExecutedFileUrl('changeGroupPerms.vm'))',
	data: { sourceGroupId: data.sourceGroupId, groupId: data.groupId }
})
.then(function(response) {
	console.info(response.message);
	if (!response.success) window.failedCount++;
	resolve();
});
 

The chageGroupPerms.vm attachment in the widget takes a while to complete, especially if the group we're changing has a lot of sub-groups.. sometimes it'll take over 2 minutes, at which point the chageGroupPerms.vm returns a 500 error.

It's literally a few seconds off completing (I added logging to find out how far through it is) Disappointed

Is there any way to increase this timeout for this request since I know it'll take a bit longer than usual?

FYI, we're hosting this in Azure as an app service (so we're not running IIS as such).

Thanks!

Parents Reply
  • BTW, I think I have another alternative.. I added a helper script API with the following C# code;

    [Documentation("Set the timeout on a particular request (overriding the default, which is 110 sec)")]
    public void SetRequestTimeout(int Timeout)
    {
    	var context = System.Web.HttpContext.Current;
    	if (context == null) return;
    	context.Server.ScriptTimeout = Timeout;
    }

    We can then add this to the top of any widget worker code that is going to take a little bit longer than usual;

    $e14_utils.SetRequestTimeout(180)

    In my limited testing it looks like it's done the trick; I see to see how it behaves when it hits our Azure environments later today.

    When I get time I'll look into the other suggestions you had Slight smile

Children
No Data