How to fix the random crashing error with 1000, 1023 and 1309 event ID in our web application? Debug log captured but no idea on how to fix

Emily Fung 5 Reputation points
2023-11-29T10:10:41.49+00:00

We have deployed a web application but experience random crash several times daily. Event ID 1000, 1023 and 1039 was found but there was not enough information to debug. It is running on Windows 2019 Standard Server with IIS 10, .NET Framework as 4.6.1. IIS Debug Diagnosis is running, and log captured. However, we don’t understand the logging details. Attached with the log file, could anyone give us some hints or direction?

w3wp__CMS-PRODUCTION__PID__8084__Date__11_29_2023__Time_03_56_17PM__462__Log.txt

w3wp__DefaultAppPool__PID__6876__Date__11_29_2023__Time_04_17_11PM__446__Log.txt

Internet Information Services
.NET
.NET
Microsoft Technologies based on the .NET software framework.
3,396 questions
ASP.NET
ASP.NET
A set of technologies in the .NET Framework for building web applications and XML web services.
3,272 questions
.NET Runtime
.NET Runtime
.NET: Microsoft Technologies based on the .NET software framework.Runtime: An environment required to run apps that aren't compiled to machine language.
1,125 questions
{count} votes

1 answer

Sort by: Most helpful
  1. MotoX80 31,816 Reputation points
    2023-11-29T15:51:58.68+00:00

    There are a number of "file not found" errors in your log.

    It looks like your server is missing some components and/or there is a mismatch between the installed Dot Net framework, and the application requirements.

    Is your IIS worker process set to use the correct .Net CLR version?

    You would need to ask your developer or the support team for the software that you running as to how you can verify that the server has the correct components installed.

    Message: Could not load file or assembly 'System.Design' or one of its dependencies. The system cannot find the file specified.

    Message: Could not load file or assembly 'System.Windows.Forms' or one of its dependencies. The system cannot find the file specified.

    Message: Could not load file or assembly 'Wisej.Core.Design' or one of its dependencies. The system cannot find the file specified.

    Message: Could not load file or assembly 'Wisej.Web.Design' or one of its dependencies. The system cannot find the file specified.

    0 comments No comments