У нас есть приложение, которое может создавать электронные книги.
Это приложение имеет модуль экспорта, который создает файл 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
Я изменил время выполнения во время выполнения на 3600 секунд, но оно продолжает падать около 3 минут.
так что это связано со временем ... каждый раз, когда мы приближаемся к 3 минутам, это терпит крах, я надеюсь, что кто-то может помочь мне.