Application crash

Posted by Ovi on Stack Overflow See other posts from Stack Overflow or by Ovi
Published on 2010-06-02T16:21:26Z Indexed on 2010/06/02 16:24 UTC
Read the original article Hit count: 136

Filed under:
|

I have an application that, as any other app, crashes once in a while for various reasons.

When it crashes, it does it gracefully and the users get a nice message of the crash. At the same time the crash is reported on the server for analysis so it can be fixed in future versions. However, I would like that the app keeps working through the crash.

What that means is that I would like to run the forms in an 'atomic' way. If it goes down, it doesn't take down the entire app. The users should just need to start over the work done with the particular form.

Is this something that can be done through architecture? Or maybe the new framework versions has something to aid this?

The application is build mostly in C# over the 3.5 framework, but it also uses some external references, some COMs and web service references.

I am not interested in an answer: 'well fix the crashes'. Me and my team and the testing team are working round the clock for this.

© Stack Overflow or respective owner

Related posts about c#

Related posts about crash