You are not logged in.
I'm currently trying to convert some code from an ex-colleague to mORMot2.
This code uses ExportServerNamedPipe and TSQLRestClientURINamedPipe for whose I can't find something similar in mORMot2.
(I only found some comments in the mORMot2 code mentioning some NamedPipe things that don't seem to exist either.)
What should I use in mORMot2 instead of ExportServerNamedPipe and TSQLRestClientURINamedPipe?
Offline
Named pipes makes more troubles than solution on Windows, because they have very difficult security issues.
So we didn't moved it into mORMot 2.
What you could use is a regular HTTP connection on the loopback.
Just a blocking HTTP server could be fine, e.g. useHttpSocket.
You can try ServerThreadPoolCount = 0 for one thread per connection.
Offline