DrWh0
DrWh0

Reputation: 126

WCF replacement in. Net Core

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?

Upvotes: 1

Views: 378

Answers (3)

Kit
Kit

Reputation: 21739

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

Upvotes: 0

James Westgate
James Westgate

Reputation: 11464

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.

Upvotes: 0

Jiayao
Jiayao

Reputation: 578

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.

Upvotes: 2

Related Questions