I have a large Compact Framework V2.0 application that in most cases works very well. On some devices, once a day the user receives a Native Error 0xC0000005, which does not fall into the standard managed block Try / Catch.
My application synchronizes with the server through ASMX calls at fixed intervals. The problem occurs during synchronization. In addition to the ASMX call that occurs during synchronization, there is significant business logic, but 98% of this is managed code. I looked through all my P / Invokes and my own C ++ application libraries, and at the moment I’m approximately 95% sure that this is not the problem.
Since this only happens on some devices and is very rare (less than once a day), it is very difficult to isolate. I have instructed my code and it seems like this is happening at random places in the application, so I suspect something is corrupting the memory.
Any thoughts on how to fix this will be appreciated.
Kevin source
share