I need to create client application and server service application, that uses Remote Procedure Calls with windows authentification and impersonation. Since WCF is not supported in Net Core and gRPC uses http/2, which not supppoted by Windows Authentification are there any alternatives I could use for that?
Asked
Active
Viewed 222 times
3 Answers
2
WCF is a Windows-only framework, while.net Core is cross-platform.
The links below contain some usage and examples that you can refer to.What replaces WCF in .Net Core?
Thanks.

Jiayao
- 510
- 3
- 7
-
2thanks for the link, but I saw it already and I did not find any information about any net core library with which I could use RPC with Windows Authentification and impersonation on WinForms – DrWh0 Jul 26 '21 at 16:25
0
I have found the ServiceWire package to be an excellent replacement for NamedPipes and WCF, especially if you do not need to queue requests or share objects.

James Westgate
- 11,306
- 8
- 61
- 68