Questions tagged [dcom]

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

DCOM is the distributed extension of COM. It specifies the additional infrastructure that is required to further extend COM to networked environments and enable software components to communicate with one another over a network. DCOM is designed for use across multiple network transports, including Internet protocols such as HTTP. It is based on the OSF's DCE RPC specification and implemented as a layer over Microsoft RPC.

403 questions
0
votes
1 answer

how to add your dcom project to component services

So, I am trying to add in a new dll to an old project (that I didn't start). It all goes well, in that I am able to add a dll and use its functions - no problem. However, when it came time to test the project, after building it and packaging the…
Aj Godinez
  • 115
  • 1
  • 11
0
votes
1 answer

Weird Error. 8007007E : Retrieving the COM class factory for component{} - 8007007E

I have deployed a Web Application(developed in VS 2008) on Windows 2003 Server 32bit OS. My application uses Microsoft Office Word(i am using it to Generate PDF). Application is running perfectly fine, .Doc & .Pdf are being generated. But once i…
MK4
  • 725
  • 8
  • 24
0
votes
1 answer

Vagrant error E_NOINTERFACE starting VirtualBox different versions in Windows 7 SP1 x64 Ultimate (COM/DCOM error?)

I am trying to start VirtualBox (versions 5.1, 4.3.4, 4.16) in Windows 7 SP1 x64 Ultimate via Vagrant 1.7.4 command 'vagrant up' and i am getting error Bringing machine 'default' up with 'virtualbox' provider... There was an error while…
WebComer
  • 1,131
  • 2
  • 19
  • 31
0
votes
1 answer

When making a remote COM call, where does the proxy stub DLL need to be registered?

I have a client-server setup, a module SomethingApp.exe implementing IDL defined interface ISomething lives on the server; in addition SomethingPS.dll is created by the IDL compiler as a stub for ISomething I access ISomething from a remote client…
Mr. Boy
  • 60,845
  • 93
  • 320
  • 589
0
votes
1 answer

i can't find CLSID {0006F03A-0000-0000-C000-000000000046} or ms-outlook on DCOM

I received the following error when I tried to send email from web application although it was working good before , Do you have any idea about that ? and it working in the debug mode of visual studio but is not working through the IIS right…
0
votes
1 answer

Classic ASP with COM throwing "Data source name not found and no default driver specified" on Windows Server 2008 R2

We have a classic ASP application that connects to a COM component. The COM component reads a connection string from the registry and connects to a datasource. We exported the COM package out of a 2003 box and imported into a 2008 R2 box. We've…
Jason N. Gaylord
  • 7,910
  • 15
  • 56
  • 95
0
votes
1 answer

Access Denied OutLook DCOM

I'm trying an ASP.NET App and I have a problem with OutLook. Code behind : OutlookApplication = new Application(); NameSpace nameSpace = OutlookApplication.GetNamespace("MAPI"); nameSpace.Logon("", "", missing, missing); nameSpace = null; When I…
GrayFox
  • 824
  • 2
  • 10
  • 27
0
votes
1 answer

A Security Package Specific Error Occurred from DCOM

I have created VB.NET application using OPC Labs QuickOPC Classic 5.12 to get the data form the PLC server(SoftwareToolBox's Top server in remote machine). I have configured the DCOM setup in the client machine and server machine. The application is…
Saravana Kumar
  • 3,669
  • 5
  • 15
  • 35
0
votes
1 answer

IIS Permission Denied 70 error when CGI attempts to Instantiate InternetExplorer.Application

Context: Windows Server 2012 R2 (Azure VM) IIS: 8.5 The CGI application is a 32bit EXE. It calls the MSScript object to evaluate a JScript script. The JScript attempts to instantiate InternetExplorer.Application. The attempt fails consistently with…
bugmagnet
  • 7,631
  • 8
  • 69
  • 131
0
votes
1 answer

Enable DCOM via VBScript

I want to enable DCOM using VBScript. It is possible to enable DCOM like this, but I am searching for a way to do this via VBS. Is this possible ? May with RegKeys ...?
npit
  • 199
  • 3
  • 22
0
votes
1 answer

How to configure DCOM access, launch and set run as permission using c#

I'm trying to configure access, launch permissions along with set run as to one of our custom DCOM application. I have already gone through these links dcomcnfg functionality programmatically and…
user2913184
  • 590
  • 10
  • 33
0
votes
1 answer

InvokeHelper() throws Access is denied exception

Community, I have quite interesting and in the same time heavy problem. I have VB .NET application + Service + C++ application. C++ application generates some data and makes callbacks using InvokeHelper() method: InvokeHelper(0x60030000,…
0
votes
1 answer

DCOM Error Based on Number of Users

I have an application that uses a DCOM component to get data from remote machines. A client is getting strange behavior when using this app on Windows Server 2012. The first 12 users to connect via RDP can use the app just fine but the 13th user is…
Dennis
  • 215
  • 1
  • 3
  • 14
0
votes
0 answers

Add reference to DCOM server in C#, without type library or IDispatch

I am currently working on a DCOM client/server application pair. The DCOM server is in C++, whilst the client is to be implented with C#. What I want to do is add a reference to my DCOM server, which is met with the following error: A reference to…
Bart
  • 547
  • 3
  • 16
0
votes
1 answer

Read data from HDA server returns E_INVALIDHANDLE

I'm using the OpcNetApi assembly to connect and read data from a Matrikon OPC HDA server. Connection is taking place however I'm receiving an E_INVALIDHANDLE error as ResultID when trying to pull some test data from the server. This is how far I…
jdecuyper
  • 3,934
  • 9
  • 39
  • 51