1

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?

DrWh0
  • 126
  • 7

3 Answers3

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
  • 2
    thanks 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
0

While more modern approaches would be preferred, if you already have heavy WCF dependencies or WCF knowledge, you can look into CoreWCF.

Kit
  • 20,354
  • 4
  • 60
  • 103