0
votes

I have hosted ASP.NET MVC application in Azure Web APP its getting time-out of 4 Minutes. The session is clearing for that instance.

Now I'm using Free Shared Infrastructure pricing tire, if I changing the plan to extend this idle timeout? or did I missed any configuration to setup session time-out.

1

1 Answers

1
votes

Now I'm using Free Shared Infrastructure pricing tire, if I changing the plan to extend this idle timeout? or did I missed any configuration to setup session time-out.

It is no relationship with pricing tire. It is limited by Azure WebApp. For more information, we could refer to Why does my request time out after 240 seconds?

Azure Load Balancer has a default idle timeout setting of four minutes. This is generally a reasonable response time limit for a web request. If your web app requires background processing, we recommend using Azure WebJobs. The Azure web app can call WebJobs and be notified when background processing is finished. You can choose from multiple methods for using WebJobs, including queues and triggers.