In Asp.Net when an application pool stops, invokes the application_end event. In this event i execute some operations who must be completed before the application shutdown. These operations are synchronously but sometimes application stops without all operation completed, but there are no errors. I think there is a timeout at application pool level or at application_end event level.. but i haven't found nothing in documentation about this timeout.
Asp.net Application_End Timeout
509 Views Asked by jed At
1
There are 1 best solutions below
Related Questions in ASP.NET
- Create an IIS web request activity light
- Writing/Overwriting to specific XML file from ASP.NET code behind
- What is the point of definnig Asp.net Intrinsic Objects In different places and what is the different betwen them?
- Deleting Orphans with Fluent NHibernate
- IOrderedEnumerable to vb.net IOrderedEnumerable Conversion
- Entity Framework Code First with Fluent API Concurrency `DbUpdateConcurrencyException` Not Raising
- Getting deeply embedded XML element values
- What is best way to check if any of the property of object is null or empty?
- NuGet - Given a type name or a DLL, how can I find the NuGet package?
- ASP-MVC Code-first migrations checkbox not active
- How do i add onclient click to my jquery button
- Jquery: Change contents of <select> tag dynamically
- Retrieving data from Oracle database
- ASP.NET: Fill Textbox field upon dropdownlist selection by user
- Why web API return 404 when deploy to IIS
Related Questions in IIS
- Create an IIS web request activity light
- Why web API return 404 when deploy to IIS
- Adding site Binding programmatically IIS 7.5
- .net Web Api 2 Owin authentication token expires suddenly and often on IIS 8.5
- Redirecting subdomain to directory on Azure
- Saving Image To a Temp Folder is Loosing Session
- The page cannot be displayed because an internal server error has occurred on server
- Approach for performing long running tasks in .NET
- Why does IIS Anonymous Authentication turn on by itself after I publish my project to server?
- IIS 7 ERR_CONNECTION_TIMED_OUT only with public IP
- Maximum value for IIS .NET Compilation Batch Time-out
- ASP.Net 1.1 app on IIS 7 waiting threads
- File upload web api 2.0 error after deployment on IIS 8.5
- nginx and IIS - dealing with invalid hostname and SSL
- Allow console application to access Windows Authenticated web app
Related Questions in APPLICATION-POOL
- After installation of website it changes Application Pool of web application that follows it.
- IIS 7.5 app pool stops on first request to web page
- Recycling app pool each time something is published
- Track down an application pool user account
- Tomcat Connection Pool's attribute setting
- Mapnik v2.3.0 under IIS crashes the AppPool
- Isolating processes through Application Pools
- What is the minimum acceptible value for Idle Time-out(minutes) in IIS?
- How to programmatically set App Pool Identity on IIS 8
- Does a change in web.appsettings.config triggers an Application Pool recycle?
- System.UnauthorizedAccessException: Access to path is denied
- Application "freezes" and requests queue is full
- How to Auto Call My Method In Time Period Without Running any WebPage in my application in ASP.net C#?
- Dedicated application pool to WCF service or the website on a low RAM server?
- when should I schedule app pool recycles?
Related Questions in APPLICATION-END
- How to exit an ASP.NET application gracefully when stopping debugging in VS 2010?
- The Application_end method in my ASP.NET MVC website is called many times weirdly almost at the same time
- Regarding Session_End and Application_End methods in asp.net
- implementation of customized application_end method in asp.net
- Prevent IIS from unloading ASP.Net site
- Asp.net Application_End Timeout
- Application_End() cannot access cache through HttpContext.Current.Cache[key]
- background thread in asp.net application
- When Application_End isn't called in asp.net WebService
- IIS app pool recycling randomly every few seconds
- Why would IIS "start" an App that is still running?
- How to get Application_End to run while debugging (or when stopping debugging)?
- Open or create a text file every day on Application_Start and Append with requested web pages then close on Application_End
- Application_End() event is fired without any call in global.ascx
- trying to identify source of bin dir change or directory rename app restart
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
This timeout is configurable by app pool (iis.net). It's
shutdownTimeLimit, orShutdown Time Limit (seconds)in the UI (advanced app pool settings).