Skip to content

Replacement for classic remoting IpcChannel ? #36

@curunoir

Description

@curunoir

Hello, first thanks for this project which can be very helpful.

I have to upgrade an old .net framework projecttowards .net core 6 which used .net remoting with Ipc channels, like this on client side

 ipcCh = new IpcChannel("someChannelName");
ChannelServices.RegisterChannel(ipcCh, true);

 obj = (ISharedAssemblyInterface)Activator.GetObject
     (typeof(.ISharedAssemblyInterface),
     ipc://LocalServer/RemoteCommunication");

As I looked into examples and documentation I don't think CoreRemoting is supporting interprocess without the use of a network layer such as tcp or http. It might be an issue for this application to listen on a dedicated port as it is widely distributed on various workstations where I don't have control and this dedicated port would already by taken.

But maybe there is something in CoreRemoting which might fit my use case and I didn't find it yet so I'm humbly asking here if you have some ideas or maybe some alternatives which will help me replace an alternative for classic remoting with Ipc channels.

Cheers.

Metadata

Metadata

Assignees

Labels

No labels
No labels

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions