-
as seen on Stack Overflow
- Search for 'Stack Overflow'
hi
I am trying to create two IPC channels
IpcChannel ipcChannel = new IpcChannel("DroolsClient");
ChannelServices.RegisterChannel(ipcChannel, false);
objec = (DroolsInterface.RulesEngineInterface)Activator.GetObject(typeof(DroolsInterface.RulesEngineInterface), "ipc://Drools/SreeniRemoteObj");
…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
I have a bunch of templates that are used for rpc and was wondering if there is a way to simplify them down as it repeats it self allot. I know varags for templates is coming in the next standard but can you do default values for templates?
Also is there a way to handle void functions as normal functions…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
Hi
I am trying to run a service under a different user account from the application that will access the service via remoting.
While under the same account everything is fine, but as soon as I use different accounts, I get an access denied error while trying to open the IPC port.
Is there something…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
I have a module that uses IPC::Open3 (or IPC::Open2, both exhibit this problem) to call an external binary (bogofilter in this case) and feed it some input via the child-input filehandle, then reads the result from the child-output handle. The code works fine when run in most environments. However…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
I found "Delphi Inter Process Communication (IPC) using SendMessage" with Google.
Here's a piece of the code from Sender to send a message for Receiver :
procedure TfrmClient.FormCreate(Sender: TObject);
begin
MyMsg := RegisterWindowMessage('MyMessage');
ServerApplicationHandle := FindWindow('TApplication'…
>>> More