-
Notifications
You must be signed in to change notification settings - Fork 27
Description
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.