I am trying to implement registry-free COM explicilty in my code (can't use registry-free COM via an app manifest since that only works on the exe level): I create a static class that loads the COM dll, calls DllGetClassObject, then IClassFactory::CreateInstance().

Works just fine to a point. Implementation details are at http://www.dimastr.com/redemption/security.htm#redemptionloader

But if I instantiate my COM object from multiple threads (e.g. first on the main thread, then from a secondary one), .Net starts asking my objects for IMarshal, which I do not implement.

If the COM library is registered in the registry, everything works fine. If the library is not registered in the registry (which is the whole point of doign all this), .Net asks for IMarshal.

Is there any way i can get the default implementaiton of IMarshal that COM uses internally? Or prevent it from faliling if my object does not implement IMarshal?

Thank you!


link|improve this question

50% accept rate
Um, what makes you believe that reg free com "only" works on an exe level? – Chris Becke Oct 24 '10 at 7:38
1  
Because the COM system looks up the application manifest from the parent process exe. It cannot possibbly know that a call came from a dll, so it needs to retrieve the resource from an executable other than the host exe. And my COM library can be loaded by another dll (e.g. an Outlook add-in). – Dmitry Streblechenko Oct 24 '10 at 15:34
feedback

1 Answer

up vote 2 down vote accepted

CoGetStandardMarshal is used to get the default implementation; however this method is undocumented -- you'll have to search around to get its prototype.

However, if you don't provide an IMarshal interface the default implementation is used. Therefore, I reckon that the problem lies elsewhere.

link|improve this answer
Yes, I did end up using CoGetStandardMarshal - it worked flawlessly once I did that. Thanks! – Dmitry Streblechenko Nov 14 '10 at 4:57
And the default IMarshal is not used if the interface is not registered in the registry. This was a .Net specific problem - I returned the same IClassFactory from DllGetComServer, and .Net was comparing it with the IClassFactory it already had from a call on a diffrent thread. The call was then marshalled to that thread, where .Net choked if IMarshal was not explicklty returned. Making .Nte forget IClassFactort immediatley after I was done using Marshal.ReleaseCOMOBject() solved the problem. – Dmitry Streblechenko Nov 14 '10 at 4:57
feedback

Your Answer

 
or
required, but never shown

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