Tagged Questions
The rcw tag has no wiki summary.
6
votes
1answer
3k views
Why a RaceOnRCWCleanup error when closing a form with WebBrowser control on it?
VS2008, .NET 2, VB.NET, XP ...
I have a Windows form, with a WebBrowser control and a Close button, which just does a Me.Close. The form's cancel button is set to the Close button, so that I can ...
5
votes
1answer
758 views
VS2008 UnitTesting - detached RCW with Office Application objects (PowerPoint, etc.)
BACKGROUND
I am automating an PowerPoint 2007 via C#
I am writing unittests using the built-in unit testing of Visual Studio (Microsoft.VisualStudio.TestTools.UnitTesting) for my code
I am well ...
4
votes
2answers
297 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
719 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
177 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
206 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
94 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 ...
3
votes
2answers
329 views
VS2010 will not display project properties (“underlying RCW”)?
Only sometimes (I haven't yet noticed a pattern), VS2010 shows the following error (where I'd expect the body of the property page to be) when I right-click on a project (various types of projects) ...
2
votes
2answers
288 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
1answer
465 views
Releasing a COM object reference safely from .NET
I have read a lot of articles on the net about releasing RCW's safely, and it seems to me that no one can agree on exactly what needs to be done in what order, so I'm asking you guys for your ...
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
667 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
233 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 ...
1
vote
2answers
478 views
What is the difference between an Interop and a RCW (Runtime Callable Wrapper)?
Is it just terminology?
0
votes
1answer
74 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
81 views
How do i transfer this unmanaged code from asp to asp.net 2/mvc?
i'm a newbie to ASP.net interop features, so what i have right here is some unmanaged dll that i need to call from my asp.net mvc app.
the dll name is CTSerialNumChecksum.dll. i can easily call the ...
0
votes
1answer
77 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
396 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 ...
0
votes
1answer
294 views
Removing CompilerOptions directive for an interop
I've created an interop for a COM dll via tlbimp and added it to the assembly cache. To use this in an ASP.net page i need to include the following
<%@ Page Language="VB" Debug="true" ...