Click to See Complete Forum and Search --> : Recovery from the Memory Dump


sharpant
January 17th, 2008, 09:36 AM
My application handles critical image processing which involves occupying RAM somewhere from 100 MB to 1GB when processing is going on. But sometimes due to some system/application error, application closes abruptly and processing data in the memory is lost.

Now my requirement is to take the memory dump when application closes abruptly or on exception. This is .net3/C# application. I mean how to take memory dump in case of system error or critical error when the application
is closed abruptly. Should it be a different service listening to the application.

Please help.

JonnyPoet
January 19th, 2008, 07:23 PM
......application closes abruptly and processing data in the memory is lost.

Now my requirement is to take the memory dump when application closes abruptly or on exception. This is .net3/C# application. ....when the application is closed abruptly. Should it be a different service listening to the application. Is there no exception thrown when it is apruptly closed ? Is the application Multi or singlethreaded ?

darwen
January 19th, 2008, 07:34 PM
But sometimes due to some system/application error, application closes abruptly and processing data in the memory is lost


I'd suggest fixing the system so it didn't crash...

Darwen.