Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
3answers
344 views

COM Interop, client not finding interface in Out-of-process COM

I'm using Microsoft's CSExeCOMServer as a base for setting up a Out-of-process COM server, but it's not working properly. The server is 64 bit, and the client is 32 bit. Here's the sample interface ...
3
votes
3answers
218 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
435 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
198 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
139 views

View Objects in Session of a Running ASP.NET Application

I am trying to move my app to out-of-proc session state and can't find which session object is failing to serialize - the YSOD stack trace is unrevealing. Is it possible to view the objects, or at ...
2
votes
1answer
578 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
106 views

Out of process video player on mac (vlcj)

I've been using VLCJ to embed a number of media players in the same window - on Windows and Linux this works fine, because they can be out of process (which they need to be to be stable - in short ...
1
vote
1answer
43 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
1answer
99 views

Can I create a COM server with just C# 4.0? [closed]

Possible Duplicate: What do I need to do to implement an “out of proc” COM server in C#? Hello, I don't know much about COM or C++, so perhaps this is a silly question: ...
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
764 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
301 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
2answers
53 views

Calling a living object from one Process while running in another Process

Not really sure how to ask this question because I really don't know what I'm talking about. I have two DLLs (.NET), each is an AddIn that runs in two different application processes i.e. application ...
0
votes
1answer
47 views

Identifying classes to be marked as Serializable for out-of-proc session

We are attempting to go out-of-proc for session state, and need to mark the classes we intend to store in session as Serializable, of course. Is there any way to automatically determine which classes ...
0
votes
1answer
166 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
123 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
127 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 ...