Tagged Questions

3
votes
3answers
237 views

.NET out-of-process COM objects sharing static instances in API calls

It's hard to explain our situaction. We have a 3-tier application. The engine is a DLL coded in C++, then we have a VB6 ActiveX EXE that access to the engine via API calls, and at the top level we ...
3
votes
1answer
445 views

Getting a 32-bit COM client to talk to a out-of-proc 64-bit server using Java/JaCoB

This question indicates that it is possible for a 32-bit COM client to talk to a 64-bit COM server (and vice-versa), provided the server is out-of-process. I'm trying to implement a client using the ...
3
votes
2answers
203 views

Does marshaling a marshaled interface give me a marshaller to the proxy or the original interface?

Here is a concrete example: I create a IWeBrowser2 interface by calling wb.CoCreateInstance(CLSID_InternetExplorer, 0, CLSCTX_SERVER);. This gives me a marshaled interface from my process into ...
2
votes
1answer
603 views

How to use an out-of-process COM server without its tlb file

It is about Window COM component. Server.exe: an 32bit out-of-process COM server CLSID_Application: The GUID of a COM object in Server.exe Client.exe: a 64bit client application which use Server.exe ...
1
vote
1answer
44 views

What privileges should a process have to activate out-out-process COM server

I have a 3rd-party out-of-process COM server and a client program which is trying to activate it. I've created two ones: on C# and on C++. When I start my client program (any of them) from VS2010 with ...
1
vote
2answers
63 views

Is there a way to decrease overhead associated with out-proc COM calls?

Our program consumes an out-proc COM server and makes thousands of calls on its interfaces. This takes very very long time - like a minute for about 50k calls. The COM component vendor says that the ...
1
vote
1answer
788 views

C# ActiveX exe?

I need an out of process C# COM component to host a 32 bit VB6 COM object. I can't seem to figure out how to do this in C#. The closest analogue I can think of is an activex exe, but it doesn't appear ...
1
vote
2answers
308 views

How to determine the supported thread model of an out-of-process COM server?

Question: How to find the threading models supported by a predefined out-of-process (EXE-based) Server: Using oleview? Or any other valid methods? Note: Attempting to connect to the above ...
0
votes
1answer
169 views

Windows Service launching Out of Process COM server - CSIDL_APPDATA returning as different user path

I have a windows service written in C#. This service spawns a number of MTA threads. In each of those threads an out of process COM class is instantiated. I set the service to run as my current user ...
0
votes
1answer
127 views

Invoking .NET GUI from an ATL exe server (COM)

We have the following situation: An ATL COM server (out-of-proc, EXE) which hosts COM objects with connection points. These objects "live inside" a single (exe) process and they fire events (using ...
0
votes
1answer
129 views

Vista and out-of-process COM server

I'm having a hell of a time trying to figure out user privilidges and security settings on Vista. The situation is this: I have a 32 bit C++ application that acts as an out-of-process (==standalone ...