The exception code c0000005 is thrown from mscorwks.dll when the application is run on Windows Server 2008 R2 launched using test complete. Other platforms (WinXP, Server 2003 R2, Windows 7 32-bit and 64-bit) do not present this exception.

The event log from a single execution has many of the following event with event ID 1023 raised by the .NET Runtime:

.NET Runtime version 2.0.50727.4952 - Fatal Execution Engine Error (7383851A) (80131506)

The application itself makes use of a SOAP interface generated by visual studio from a wsdl, a COM object with an embedded interop, and is targeting .Net 4.

sfc /scannow was run and found no problems with system files on the affected system.

What trouble shooting can be done to identify a solution?

link|improve this question

75% accept rate
feedback

4 Answers

A 0xC0000005 is an HRESULT an exception code wrapping a Win32 error which means "Access Denied." Given that you are using COM interop, and getting an ExecutionEngineException (in COM, COR_E_EXECUTIONENGINE; 0x80131506), my guess is that either it's a NULL pointer in the COM component or a faulty ComImport directive in your .Net code.

link|improve this answer
1  
Exception codes are not win32 error codes are not HRESULTs are not NTSTATUSes. Sorry pet peeve of mine. – Logan Capaldo Dec 28 '10 at 23:36
I knew someone would call this out. Ok, fine, the 0xC0000005 is a Win32 error. The corresponding HRESULT is 0x80070005. – codekaizen Dec 28 '10 at 23:47
It's not a win32 error. It's an exception code. Feed 0xC0000005 into eg FormatMessage and you won't get a useful result. – Logan Capaldo Dec 29 '10 at 0:10
Caught again. I changed it before your comment, however. Furthermore, it is a Win32 error, just wrapped in an SEH form (much like the HRESULT). – codekaizen Dec 29 '10 at 0:12
It is a problem in the com interop but not because of the component itself. It is actually a problem caused by the test harness product being used, test complete 7, that gets a little grabby and causes garbage collection to fail. I will create a more concise answer for those that run into the same problem using the product, but thanks for the help that led me down the right path. – Erick Dec 29 '10 at 19:45
feedback

Fatal Engine Execution Error and an access violation are both symptoms of the same problem. FEEE is raised when the .NET garbage collector detects that the internal structure of the garbage collected heap is destroyed. An access violation is a hardware exception, raised by the processor when it is asked to access memory with an invalid address. A common cause of an AV is heap corruption.

These kind of mishaps are very commonly caused by unmanaged code. It is also quite common for unmanaged code to have latent memory management bugs that can go unnoticed for a long time. The kind of damage the bug can do tends to be quite random. Just running it on another operating system which has a different memory allocation pattern can be enough to trigger the bomb.

You have an excellent candidate for the source of the trouble. You'll need to work with the COM server vendor or author to chase the bug.

link|improve this answer
feedback
up vote 1 down vote accepted

This error is caused by flaws in the way that TestComplete 7 interacts with the heap in mixed managed/unmanaged applications. Instead of using the TestedApp.Run method using the following block of code, modified for you choice of scripting language, presented in VBScript:

Dim oScript, command
Set oScript = CreateObject("WScript.Shell")

command = "%comspec% /c " & PATH_TO_EXE & " " & Args
oScript.Run command, 10, True 

Relevant msdn article is available here.

link|improve this answer
feedback

Erick, Please note that TestComplete 7 (including the latest update 7.52) supports .NET Framework 4 only up to version .NET 4 Beta 2. It does not support the release version of the Framework, so this may be the reason of the problem.

Try building the app targeting .NET 2.0 - this should resolve the problem.

To test .NET 4 applications, you will need to use TestComplete 8.

link|improve this answer
We are aware of the .Net support limitations of TestComplete 7. We are currently in the process of moving to TestComplete 8, but the above is a work around for the .Net 4 compatibility issues. – Erick Dec 30 '10 at 15:08
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.