Tagged Questions

4
votes
2answers
333 views

COM exceptions on exit with WPF

After execution both of the following test cases, a COM execution is printed to the console. What am I doing wrong? If I run either test singly, or if I run both tests together, the exception is ...
4
votes
4answers
795 views

RCW & reference counting when using COM interop in C#

I have an application that uses Office interop assemblies. I am aware about the "Runtime Callable Wrapper (RCW)" managed by the runtime. But I am not very sure how the reference count gets ...
4
votes
1answer
183 views

When does the .NET runtime hold a reference count > 1 for COM objects?

Until recently, I believed that the .NET runtime only increases the reference count of COM objects by 1 when creating a runtime-callable wrapper, and that only one such runtime-callable wrapper is ...
4
votes
1answer
209 views

Does a wrapper class calling a COM component through C# need to implement the Dispose pattern?

I have a class written in c# which is acting as a wrapper around a COM component. The COM component is early bound and the RCW has been generated by Visual Studio. Should I implement a dispose pattern ...
3
votes
1answer
104 views

What is the difference between a COM string (BSTR) and a .NET string?

Is it just the way the bytes are combined to "encode" the data? I'm curious because I wonder how an RCW automatically takes a .NET string and transforms it into a COM BSTR. I'm guessing it just forms ...
2
votes
2answers
297 views

Addref on COM RCW

Is it possible to increase the RCW reference count on an unknown interface? (i.e. not the reference count on the underlying COM object) I have some old COM server code int Method1(object comobject) ...
2
votes
3answers
2k views

C# wrapper interface error: E_NOINTERFACE

I am trying to produce a C# wrapper for a COM object that I have (named SC_COM.dll), but am having some issues linking it with Visual Studio 2008 (running Vista). I need to do this registration-free ...
2
votes
1answer
674 views

Fastest way to call a COM objects method without using a RCW

I'm trying to find the cleanest and fastest way for calling a COM objects methods. I was using a RCW for the object but every time a new version of the third party COM object comes out its GUID ...
1
vote
1answer
269 views

Has COM object been separated from its RCW?

I'm trying to fix problem with "COM object that has been separated from its underlying RCW cannot be used" error, and I think what's causing it is that COM objects are used on a thread that didn't ...
0
votes
1answer
20 views

Is there any way to handle when COM object is disconnected from RCW?

Is there any way to run code when COM object is about to be disconnected from RCW without implementing IDisposale interface and explicit call MyObject.Dispose in client code? The code below is not ...
0
votes
1answer
88 views

How to manage .Net's RCW COM object creation paramets (namely requested interface)?

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 ...
0
votes
1answer
78 views

Code Coverage in VS2008 on .net runtime callable wrappers

I have a .DLL which contains .NET Runtime callable wrappers for COM/DCOM objects. I have written a testing suite in C# in VS 2008 which calls our server functions which are in the abovementioned ...
0
votes
1answer
398 views

C# 2005 COM and .NET Access Denied 0x80070005 E_ACCESSDENIED

I am rewriting a C++ app in C# 2005. The App has 2 components: one out-of-process COM server which can be started by a C++ service. The COM server uses outgoing interface, meaning it invokes event ...