Tagged Questions

Distributed COM (DCOM) is a protocol that enables software components to communicate with one another over a network.

learn more… | top users | synonyms

12
votes
8answers
1k views

Microsoft and SAP

For many years I have used the old "SAP DCOM Connector" to communicate between Microsoft based applications and SAP. Unfortunately this old but good and performant technology is no longer supported by ...
6
votes
6answers
2k views

COM, COM+, DCOM, where to start?

I am curious about COM+, DCOM. I know that MSFT does not encourage you to use this tools natively (meaning with C/C++, in fact there is not a lot of documentation available) but I want to learn to use ...
5
votes
1answer
407 views

How can I supress Delphi DataSnap error message dialogs?

We run a DataSnap Delphi 2009 application on Windows 2003 Server. DataSnap Client and Server are on the same computer, using DCOM over Borland Socketserver. The client runs a background batch job. ...
5
votes
2answers
3k views

Automating Office via Windows Service on Server 2008

We have a Windows Service which runs on 2003 Server. It opens a source Word document using the Word Interop and then does some stuff with it. It also does likewise with Excel and PowerPoint files. ...
4
votes
1answer
115 views

How to make a com interface from delphi work in windows seven

My company runs an old application written in delphi. A simple com server which serves some database for some computers. I have to run the server once in every computer to register the com interfaces ...
4
votes
2answers
237 views

CORBA/ RMI and (D) COM are any still relevant today?

Are CORBA (language agnostic) / RMI (Java) and (D) COM (MS) still relevant today, or is there a technology that has surpassed them? Cheers, J
4
votes
7answers
461 views

What's wrong with DCOM?

There seems to be a lot of enmity against DCOM, and I'm curious to understand why. For a company still writing to the Win32 SKD using C++, is there any real reason not to use DCOM in current or future ...
4
votes
2answers
517 views

Does Vista do stricter checking of Interface Ids in DCOM calls? (the Stub received bad Data)?

I hope everyone will pardon the length, and narrative fashion, of this question. I decided to describe the situation in some detail in my blog. I later saw Joel's invitation to this site, and I ...
3
votes
2answers
72 views

Access COM objects on another box from .NET (without deprecated DCOM, remoting)

I have to integrate my .NET server app with a vendor's product. The vendor's product will be on its own server and has a supported & documented API, but alas, only as COM objects. Since DCOM and ...
3
votes
4answers
115 views

With what shall we replace the DCOM communication with?

We currently have a number of C++/MFC applications that communicate with each other via DCOM. Now we will update the applications and also want to replace DCOM with something more modern, something ...
3
votes
1answer
303 views

How does impersonation in DCOM work?

I have a DCOM client and server applications which use OLE automation marshaller. They work fine when run on the same PC but when the server is on a different PC not in the same domain I get ...
3
votes
1answer
56 views

Why is “local launch” allowed for out-proc servers by default but “local activation” is not?

I currently need to create a COM object that is served by an out-proc COM server from inside an ASP.NET handler. So every time I deploy the COM server I have to fire up DCOM Config and change the ...
3
votes
4answers
370 views

DCOM: How to close connection in server on client crash?

I have a rather old project: DCOM client and server, both in C++\ATL, only Windows platform. Everything works fine: local and remote clients connect to server and work simultaneously without any ...
3
votes
2answers
244 views

simple tutorial for DCOM

Can someone suggest me beginners learning resources for DCOM technology using vc++ Those with Sample codes would be very helpful. Thanks
3
votes
5answers
611 views

Has .NET made raw COM and DCOM programming redundant?

Has the introduction of the .net framework made raw programming in COM and DCOM redundant ? (Except for using some COM+ services, e.g. for transaction management through the ...
3
votes
7answers
2k views

DCOM: CoCreateInstanceEx returns E_ACCESSDENIED

I'm working on a DCOM application with the server and client on two machines, both of which are running WinXP with Service Pack 2. On both machines, I'm logged in with the same username and password. ...
2
votes
2answers
114 views

QueryInterface fails with E_ACCESSDENIED

The following method is a DCOM server method. The COM client and server is running in different WinXP machines. The COM client calls RegisterClient method to register callback interface. The problem ...
2
votes
0answers
542 views

Server execution failed while trying to run DCOM component with any other user than Administrator

Afternoon, As the topic says, I'm getting this error while trying to run a webapplication that uses a DCOM agent. "Retrieving the COM class factory for component with CLSID ...
2
votes
1answer
43 views

Can I run .NET objects on Mono that have a dependency on COM components?

We have some .NET types on Windows that have dependencies on some COM components. If we were to switch to Mono, what options would we have for still using the functionality in these COM components? ...
2
votes
1answer
282 views

WMI - Update DCOM settings Programatically

I created a little exe to modify some DCOM settings. The exe works fine when I try to modify the settings on a different server from where the exe is running but does not work when I try to modify ...
2
votes
1answer
171 views

What could cause a Visual C++ 6.0 application to hang in Windows Server 2008?

We have a product which is an emergency alerting system. It is based on VC++ 6.0, in which we have three major components Server: Server is basically a DCOM and Windows Service. DCOM is used to ...
2
votes
3answers
478 views

How to determine the association between a VB6 app and an exe instanced with CreateObject()

We need to figure out how a service can peek at a running VB6 app and/or its DCOM spawned exe and figure out which VB6 app goes with which DCOM exe. The VB6 app and the spawned exe are both on the ...
2
votes
0answers
183 views

DCOM CoCreateInstanceEx failing

im writing opc client. which create instance of com server on remote server. at first: all setting on remote server are right. i tested 5 opc-example clients, and they are working fine. but when i use ...
2
votes
4answers
171 views

COM method call fails in C#, VB.NET, but works in Python

I'm having trouble with a COM library I'm trying to use. I get an ArgumentException when I call a particular method and pass it null. This happens to me in both a C# project and a VB.NET project (I ...
2
votes
1answer
323 views

Automate Remote Window with with AutoIT

I'd like to use AutoIT's COM interface in a C# application to automate a window on a remote machine. I have code that looks like this: var type = Type.GetTypeFromProgID("AutoItX3.Control", ...
2
votes
1answer
614 views

Retrieving the COM class factory for component with CLSID {00020906-0000-0000-C000-000000000046} failed due to the following error: 80070005

I am getting the above mentioned error when my web service tries to open MS word document programatically through my .net webb service. When I run web service through visual studio, it works fine but ...
2
votes
1answer
334 views

Remote DLL Registration without access to HKEY_CLASSES_ROOT

We have a legacy VB6 application that updates itself on startup by pulling down the latest files and registering the COM components. This works for both local (regsvr32) ActiveX COM Components and ...
2
votes
1answer
288 views

How can I reliably check client identity whilst making DCOM calls to a C# .NET 3.5 Server?

I have an old Win32 C++ DCOM Server that I am rewriting to use C# .NET 3.5. The client applications sit on remote Windows XP machines and are also written in C++. These clients must remain unchanged, ...
2
votes
2answers
144 views

Why is my DCOM client locking on a call to SendMessage?

Running on XP. I have a client that calls calls CoInitializeEx(NULL, COINIT_MULTITHREADED), loads a (local) DCOM object, and attaches an event interface so the DCOM object can send back events. The ...
2
votes
1answer
384 views

Unable to access DCOM object from Windows Service written in c# (platform Windows 2003 server) but can access the object when hosted as a console application

I have written an application in C# that writes to an accounting system via a DCOM object (name of the object is Toolkit Object). When this application is hosted as Windows Service in Windows 2003 the ...
2
votes
1answer
78 views

Programmatically discovering “guest only” sharing/security model

On Modern Windows, the default configuration is done in such a way that if I network-login as a local user, I actually only get authenticated as a guest (more details about this behavior is explained ...
2
votes
1answer
1k views

change Access Permissions in Component Services > COM Security with script/api?

is there an api to change the Access Permissions for the COM Security? i need to write new values to "Edit Limits..." and "Edit Default...". are these plain registry settings? can't find how to set ...
2
votes
3answers
265 views

Remote COM server instantiation

I have a COM interface to start and use a program. This works great on a local machine. Is there a possibility to start that program on another machine, through the network without installing other ...
2
votes
3answers
641 views

Is there a viable counterpart to DCOM in .NET?

I know .net has WCF, which I believe was touted as the replacement for COM when it was codenamed Indigo(?) - but is it actually suitable for use in a .NET app, providing the same functionality as a ...
2
votes
1answer
705 views

Hooking R from within Excel - DCOM? R add in for Excel?

In the past I have used a DCOM connection to call R functions from Excel and from VBA inside of Excel. I just got a new laptop and have been looking for the install files for the R add in for Excel. I ...
2
votes
1answer
459 views

Registering in COM+ expose less interfaces than Regsvr32

I've been using a 32 bit COM library by registering it with regsvr32 and all works fine. Since I need to access it from a 64 bit process, I'm now registering it as COM+ through the Component Services ...
2
votes
2answers
1k views

How do I use c# to re-implement an old DCOM server without breaking existing clients?

Back in the day, I wrote an out-of-process (i.e. EXE) COM server using VC++ 7.x (Visual Studio 2003 and .Net 1.1) using the ATL library. The server used the Multi Threaded Apartment (MTA) model and ...
2
votes
3answers
989 views

Excel VBA to VB (DCOM)

I inherited an Excel VBA spreadsheet. I have been tasked to convert it to VB. The application acquires data from a PLC using a DCOM object (I think). The following code runs the sub SBR1Select when ...
2
votes
3answers
5k views

Remote WMI with Windows XP SP3

A fresh Windows XP SP3 install does not allow remote WMI access like Windows XP SP2 does. If I follow the steps in the "How to troubleshoot WMI-related issues in Windows XP SP2" document at ...
2
votes
2answers
2k views

Error registering COM+ application proxy

I have exported a COM+ application proxy, which generates MSI and CAB files, and I have successfully installed them on a few different Win XP and Vista machines. However, I have a WinXP box that isn't ...
2
votes
3answers
399 views

Where can I find thorough DCOM documentation?

I work on an application that uses DCOM to communicate between what are essentially several peers; in the course of normal use, instances on separate machines serve a variety of objects to one ...
1
vote
3answers
197 views

Datasnap/DCOM on Windows Web Server 2008 R2

The same setup works on Windows 7 / 64 Bit and Windows Server 2008 / 64 Bit: the Datasnap server application is located on a mounted network drive registered with tregsvr ...
1
vote
1answer
117 views

Delphi - multiple remote com objects

My D5 application is on a server being used remotely by a couple of users, so I need use the following function to create a COM object to launch another application (LmPos) installed back on that ...
1
vote
0answers
43 views

How do I limit the threads in a ATL DCOM service?

I have an ATL service which implements a free threaded COM object. Our testers are running more and more threads against the service but this eventually results in an ugly runtime crash when it starts ...
1
vote
0answers
546 views

Error in excel = new Microsoft.Office.Interop.Excel.ApplicationClass();" when hosted in server machine..[dcomcnfg]

The following is the code which thows error when hosted in Server PC. try { Microsoft.Office.Interop.Excel._Workbook oWB; ...
1
vote
1answer
92 views

DCOM Security using a BATCH FILE

is there any methods to to change the Access Permissions for the COM Security using a BATCH FILE ? I need to write new values to "Edit Limits..." and "Edit Default..." in both "Access Permissions" ...
1
vote
0answers
104 views

Why would WMI not return a full result set in ManagementObjectCollection?

Running a WMI query using C# .net Any ideas on why this would not always return all the same events in the time range when the query is run multiple times and also not raise an exception when doing ...
1
vote
1answer
363 views

DCOM server and client both written in .NET

I'm developing a DCOM server in .NET 4 (VS2010, C#). By itself, this is working fine. Now, I also need to develop a .NET client for this DCOM server, but I am unable to add a reference to the ...
1
vote
1answer
153 views

Does Emacs 23.2 support DDE, OLE, COM or DCOM?

Does Emacs 23.2 support DDE, OLE, COM or DCOM? In other words, under Windows, can it integrate seamlessly with Eclipse as an in-place editor?
1
vote
1answer
663 views

How to call a DCOM object from C#?

I have a CLSID and I need to instantiate this in a Different server (i.e. DCS ) where as my working machine is (i.e. MWS ). Now, if I use following : var type = Type.GetTypeFromCLSID(new ...

1 2 3