Questions tagged [out-of-process]

In Microsoft COM technologies, out-of-process refers to COM servers implemented in such a way that they reside outside the process(es) that use them.

82 questions
0
votes
1 answer

ANCM Out of Process in .Net Core 2.2 Web API Project --

My problem is as such - I have a .NET core webapi project [targeting 2.2]. Now while trying to run it, I get the following error as shown in the image - I consulted this link --> HTTP Error 500.30 - ANCM In-Process Start Failure …
0
votes
1 answer

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 (add the appropriate log in credentials). When the…
pstrjds
  • 16,840
  • 6
  • 52
  • 61
0
votes
1 answer

asp.net core out-of-process fails to start correctly

I'm attempting to us the RunFromPackage App Setting for an Azure Web Site. I'm using the following stack asp.net core (out-of-process) Targeting .Net Framework 4.7.2 and I can no longer get my web application to run correctly. when I hit the…
0
votes
1 answer

No language switch ability for other-user-impersonated out-of-process executables?

The issue we are seeing isn't that unique, I hope. First, some background: We are running a few applications with Process.Start(startInfo) under a different user account (that has higher privileges) from a C# application (shell launcher of sorts)…
batta
  • 355
  • 1
  • 11
0
votes
0 answers

Stuck at initiallizing COM out-of-process object in C#

I need to embed a out-of-prcess COM execution in my C# application. The COM execution is written in C++/ATL. Sometimes my COM create process will not start, so I manage to use a timeout to interrupt it. My COM object initializing process: using…
Dia
  • 851
  • 1
  • 15
  • 35
0
votes
1 answer

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 the Fire_* methods) so that other processes (for…
OmriSela
  • 566
  • 1
  • 6
  • 15
0
votes
2 answers

simplest Server-Client architecture between two programs

I want to write two simple C# programs that pass values back and forth, but the two programs will reside on two separate computers connected with an Ethernet cable. What's best architecture to achieve this with? Out-of-process COM components? DLL…
MikeD
  • 171
  • 2
  • 13
0
votes
0 answers

How do I make my WPF application as activex (out of process)

I have a wpf application. I want to make this a activex com component (Out of process), so that from other applications like Excel, VB, etc.. I can call my WPF application as activeX com. How do I make my wpf application as activeX?
virus
  • 146
  • 1
  • 9
0
votes
0 answers

.Net Serviced Component with Event Handling

I'm trying to make an out of process .Net DLL; using the sample code, I'm able to make an out of process COM DLL. However, I'm facing some issues while implementing event handling. As per code, following event is exposed by the component: Public…
Azaz ul Haq
  • 1,635
  • 2
  • 18
  • 46
0
votes
0 answers

Out of Process COM Server and Event Handling

As I'm working on making an out of process VB COM Server to use it in a client VB application, and bring stability to the application. The following link of sample code from MSDN helped me in the making of VB COM server, and I successfully exposed…
Azaz ul Haq
  • 1,635
  • 2
  • 18
  • 46
0
votes
0 answers

C++ Builder: out of process COM server

Probably I miss something very basic but I haven't found the solution on stack overflow / google / etc. I need to write a COM server in C++ Builder (XE7), 64bit if this makes any difference. As a first step, I can create an in-proc COM server, it…
user2473983
0
votes
2 answers

The schema of EventEntry was not updated using out-of-process semantic logging

I write a custom EventSource class and add a method for log as below: [EventSource(Name = "MyCompany")] public class MyCompanyEventSource : EventSource { [Event(6, Message = "test.", Keywords = Keywords.Perf, Level =…
capcom923
  • 638
  • 5
  • 15
0
votes
1 answer

Windows Runtime (WP 8) out of process component and raising / subscription events

I've made out-of-process WR/WP8 component with own background thread. It handles SIP stack internally and runs in background thread. It is modified code from ChatterBox MSDN…
Dmytro
  • 530
  • 4
  • 18
0
votes
1 answer

How to detect if my Delphi application has been started by Windows as an out of process COM Server?

I am working on a Delphi application which may be started either - directly, as a desktop application, by running the application (e.g. by clicking the executable in the explorer) or - indirectly, as an out of process server, by creating any of the…
RM.
  • 1,984
  • 19
  • 29
0
votes
1 answer

Reference another VB.NET exe that has COM visible TRUE

I would like to mimic the behaviour of a VB6-Active-X-Exe. To do that, I have created a new project and set its settings to "COM Visible=True". I can now add this .exe to my main application, and I can call it, call functions in that .exe,…
tmighty
  • 10,734
  • 21
  • 104
  • 218