Application_Error fired on different thread

HenkJanP

New Member
Recently we started seeing a problem where the Application_Error event handler (for HttpApplication.Error) is being invoked on a different thread from where the request was handled. This causes issues for us as we are storing authentication information in Thread.CurrentPrincipal, and we log that information with the exception.Things we have changed recently:
  • 32 bit to 64 bit
  • Classic to Integrated Pipeline mode
 
Back
Top