I have a problem accessing a COM object from a 64-bit COM server written in C++ from a .NET project (the 32-bit version works well). It is a problem similar to the one described here Troubleshooting an x64 com interop marshaling issue. I have a COM method that takes as parameter an array of structures with longs and BSTRs. When the call returns it works OK if the call was made from a native module, but when it was made from a managed (C#) assembly, I get an access violation. If the strings are not populated in the struct then there is no exception.
The proxy/stub file start with the following:
32-bit
/* File created by MIDL compiler version 7.00.0500 */
/* at Thu Sep 22 17:52:25 2011
*/
/* Compiler settings for .\RAC.idl:
Oicf, W1, Zp8, env=Win32 (32b run)
protocol : dce , ms_ext, c_ext, robust
error checks: allocation ref bounds_check enum stub_data
VC __declspec() decoration level:
__declspec(uuid()), __declspec(selectany), __declspec(novtable)
DECLSPEC_UUID(), MIDL_INTERFACE()
*/
//@@MIDL_FILE_HEADING( )
#if !defined(_M_IA64) && !defined(_M_AMD64)
64-bit
/* File created by MIDL compiler version 7.00.0500 */
/* at Thu Sep 22 17:58:46 2011
*/
/* Compiler settings for .\RAC.idl:
Oicf, W1, Zp8, env=Win64 (32b run)
protocol : dce , ms_ext, c_ext, robust
error checks: allocation ref bounds_check enum stub_data
VC __declspec() decoration level:
__declspec(uuid()), __declspec(selectany), __declspec(novtable)
DECLSPEC_UUID(), MIDL_INTERFACE()
*/
//@@MIDL_FILE_HEADING( )
#if defined(_M_AMD64)
I tried both with the 32-bit and 64-bit version of midl.exe from Windows SDK v7.0A, but it generates the very same output. So the suggestion from the other thread didn't help. Any other ideas?
UPDATE:
The struct looks like this (I changed the names, the rest is identical):
[uuid(6F13C84D-0E01-48cd-BFD4-F7071A32B49F)] struct S
{
long a;
BSTR b;
long c;
BSTR d;
long e;
BSTR f;
BSTR g;
BSTR h;
BSTR i;
long j;
BSTR k;
long l;
BSTR m;
long n;
};
The method signature looks like this:
[id(54)] HRESULT GetListOfStructs(SAFEARRAY(struct S)* arrRes);
I actually have several such structs and methods like this. Obviously, all of them have the same problem.
GetListOfStructswas generated with a param of typeref S[]instead ofref Arrayas the default import was doing. I had to make a few changes to the code, but now it works. Thanks a bunch, and should we two meet, you have a beer from me. Or two. :) – Marius Bancila Sep 23 '11 at 9:05