0
votes
1answer
25 views
What’s the purpose of COM+ library applications?
When a COM+ application is created the wizard offers to choose between a library and a server application.
A server application is activated in a separate process and this can be …
0
votes
1answer
55 views
How to instantiate a COM object using interop in Delphi Prism
What is the correct syntax for instantiating a COM object in Delphi Prism using COM interop - new does not seem to do the job.
I've added it as a reference to the website project. …
1
vote
4answers
39 views
ComBSTR assignment
I'm confused about COM string assignments. Which of the following string assignment is correct. Why?
CComBSTR str;
.
.
Obj->str = L"" //Option1
OR should it be
Obj-> …
2
votes
2answers
36 views
Memory leak for CComBSTR
I have read that the following code causes memory leak. But did not understand why.
CComBSTR str;
pFoo->get_Bar(&str);
pFoo->get_Baf(&str);
How does it cause a lea …
0
votes
1answer
36 views
How to return an array of .NET objects via a COM method
I have a .NET assembly. It happens to be written in C++/CLI. I am exposing a few objects via COM. Everything is working fine, but I cannot for the life of me figure out how to r …
0
votes
1answer
21 views
What happens if I violate the requirements imposed on ProgIDs?
This MSDN article states that any ProgID must meet several formal requirements, length restriction included. However nothing is said about what happens if those are violated.
I fo …
1
vote
2answers
40 views
Why use CComBSTR instead of just passing a WCHAR*?
I'm new to COM. What exactly is the advantage of replacing:
L"String"
with
CComBSTR(L"String")
I can see a changelist in the COM part of my .NET application where all strings …
0
votes
1answer
27 views
Can multiple ProgIDs point to the same ClsID?
I am working on a set of what are essentially plugins, which are COM servers. Each plugin has a set of configuration data which is managed by another component, the primary key to …
1
vote
3answers
53 views
Unable to call c# code from vbscript - ActiveX error
Hi, i am trying to call a method i have written in c# from vbscript.
I have followed just about all of the instructions i can find on the web and am still having problems.
Specif …
0
votes
2answers
33 views
How does COM select how to marshal an interface?
As I get it there're three ways to implement marshalling in COM:
typelib marshalling
proxy/stub marshalling
implementing IMarshal by the object
now how does the component consu …
0
votes
3answers
24 views
How exactly do I config DCOM to load my DLL into a separate process?
I'm trying to force an existing native C++ ATL in-proc COM server into a separate process. I hope DCOM can do this for me without changing the COM server.
I started with a usual r …
0
votes
1answer
17 views
Invoking method from the System.__ComObject base type
I'm trying to get some information from an msi file
I used:
Type installerType = Type.GetTypeFromProgID("WindowsInstaller.Installer");
object installerInstance = installerType.Cr …
0
votes
1answer
53 views
How does this strange 32-bit/64-bit interop solution work?
I'm currently maintaining a piece of software that we outsourced couple of years ago and that is poorly documented. The piece is a COM server for using from applications and an ins …
1
vote
1answer
26 views
What are easy ways to use a 32-bit in-proc COM server from 64-bit applications?
I have a 32-bit native C++ ATL in-proc COM server which depends on a huge set of legacy 32-bit libraries. I need to use it from a 64-bit application with the smallest changes possi …
0
votes
1answer
68 views
Regasm and Com Interop false negatives
Hi
I'm attempting to expose our library via COM but seem to be fighting the tools more than the actual problem. Regardless of how I write my COM exposed class I get the warning: " …
