PipeMethodCalls
PipeMethodCalls copied to clipboard
Lightweight .NET Standard 2.0 library for method calls over named pipes for IPC. Supports two-way communication with callbacks.
I have implemented this library in my app. It works great in development mode (Kestrel). However, it does not work when I deploy my isntances to IIS. Do you happen...
Hello, I like your pipe implementation very much! Great! Just one question : Is it possible to have more than one client connection to a server with identical pipe name?...
I am using the PipeMethodCalls to communicate between a NET core 6 application as PipeServer and a Web API running under IIS as a PipeClient. In this particular situation I...
If the client wants to invoke something from the server within the server's call (or vice versa), the call back is blocked. I've attached a small test project with a...
Hi. First of all, thanks for awesome work. Upgrading some netfw wcf legacy to .net8 has been a pain, your library is a lifesaver. Also, my ipc is between x64...