I'm using external native COM component in my C# .Net application.

This COM dll doesn't have a type library, so I had to write the interop code myself, and having include/idl files I did it like TlbImp does. But the worst thing is that the object creation fail with:

Creating an instance of the COM component with CLSID {40700425-0080-11D2-851F-00C04FC21759} from the IClassFactory failed due to the following error: 80040111

The class is finely created if I use native CoCreateInstance and specify class_id and one of implemented interface iids.

As it turned out the problem lies in that COM object's IClassFactory::CreateInstance doesn't support IID_IUnknown passed as riid parametr, and therefore returns CLASS_E_CLASSNOTAVAILABLE (I identified it with disassembler and debugger). The component is MS SQL VDI.

Is there any way to force .Net RCW to pass different interface id into CreateInstance method rather than IID_IUnknown? Searched net a o a lot, but didn' find a solution for ths.

As a workaround I'm using C++/CLI now to crreate object with requesting proper interface instead if IID_IUnknown. for this purpose now, but would like to have code in C#, because C++/CLI requires me to build different DLL for each platform.

Thanks

link|improve this question
Failing to respond to IUnknown from CoCreateInstance() is a bug. Can you get the owners of the external library to fix it? blogs.msdn.com/b/oldnewthing/archive/2004/03/26/96777.aspx – jeffamaphone Sep 18 '11 at 19:18
The owners are Microsoft, and since this bug has been existed for more than 10 years and taking into account that it doesn't block the component usage I don't think the patch will be available – mistika Sep 19 '11 at 16:05
Oh, wow. That's awesome. – jeffamaphone Sep 19 '11 at 17:48
feedback

1 Answer

up vote 0 down vote accepted

I repro. Brr, painful. You could pinvoke CoCreateInstance:

[return: MarshalAs(UnmanagedType.Interface)]
[DllImport("ole32.dll", ExactSpelling=true, PreserveSig=false)]
public static extern object CoCreateInstance(ref Guid clsid, 
    [MarshalAs(UnmanagedType.Interface)] object punkOuter, int context, ref Guid iid);
link|improve this answer
Thanks a lot for your suggestion, Hans. It does the trick, and simple rapper will hide it. Though it would be nice to have something like (edit -- God, how to post a linefeed in comment? NBoth Enter and CtrlEnter presses Save button). ... something like: [DefaultInterfaceGuid("XXXX-XXX-XXX")] or so. – mistika Sep 19 '11 at 15:48
You can use ' to quote code. – jeffamaphone Sep 19 '11 at 17:48
feedback

Your Answer

 
or
required, but never shown

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