I am trying to figure out a way to debug the exceptions I received in Azure Application. I am new to this type of debugging, since I really dealt with errors in Visual Studio, where the active debugger is running. However, with Application Insights, there are null reference exceptions that provide only a call stack and do not contain a useful exception message.
Exception Message: Arg_NullReferenceException
CallStack: at SharedLibrary!<BaseAddress>+0x68d4c5 --- End of stack trace from previous location where exception was thrown --- at SharedLibrary!<BaseAddress>+0x329115 at SharedLibrary!<BaseAddress>+0x329207 at SharedLibrary!<BaseAddress>+0x34d603
Other exceptions have messages such as Excep_FromHResult 0x800455A0 , while others actually show the methods they refer to.
Is there any way to find where these exceptions came from decrypting the call or base address or HResult?
This will be very useful for troubleshooting errors in my application.
source share