From WCF to gRPC - Mark Rendle

gRPC is a high-performance messaging protocol that is ideal for communication between microservices and other clients on internal networks. It’s the ideal replacement for WCF or .NET Remoting, which are not supported on .NET Core. In this talk, I’ll explain the different models that gRPC enables, from Request/Response to full bi-directional streaming, and how they map to various WCF models. I’ll show how to create gRPC services and clients using the dotnet CLI, and share best practices for using them in th
Back to Top