Hi @sns ,
From the event log you provided, it means w3wp.exe file crashes. And IIS uses worker processes (w3wp.exe file in Windows) to handle client requests. So you get the Alert: Application Pool disabled due to worker process failure. You could refer to this article: w3wp.exe crash
For your issuse, it's the Exception code: 0xe0434352
Exception code 0xe0434352: This is a generic CLR exception code. It is thrown when there is an internal issue in the application. In most cases, it is either System.NullReferenceException or System.ArgumentException
There is no straightforward way to solve these kind of issues. I would recommend debugging the application in Visual Studio to get more details. In case you don’t have access to the source code, you can use DebugDiag or WinDbg for further troubleshooting.