У нас есть приложение, которое может создавать электронные книги. Это приложение имеет модуль экспорта, который создает файл AIR, но это может занять некоторое время (в некоторых книгах 2500 страниц). Если мы экспортируем мы получаем следующую ошибку:Ошибка в потоке
Thread was being aborted.
Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.
Exception Details: System.Threading.ThreadAbortException: Thread was being aborted.
Source Error:
An unhandled exception was generated during the execution of the current web request. Information regarding the origin and location of the exception can be identified using the exception stack trace below.
Stack Trace:
[ThreadAbortException: Thread was being aborted.]
System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously) +501
System.Web.ApplicationStepManager.ResumeSteps(Exception error) +564
System.Web.HttpApplication.System.Web.IHttpAsyncHandler.BeginProcessRequest(HttpContext context, AsyncCallback cb, Object extraData) +141
System.Web.HttpRuntime.ProcessRequestInternal(HttpWorkerRequest wr) +436
Я изменил мое выполнение ExecutionTimeout до 3600 секунд, но он продолжает врезаться Arround 3 минуты. так что время связано ... каждый раз, когда мы приближаемся к 3-минутной аварии, я надеюсь, что кто-то может мне помочь.
Как это устроено? в общей среде размещения? или посвященный/внутренний? – meandmycode