Previously, we created a gRPC server in .NET and connected it using a Flutter Desktop client. In this blog post, we would attempt to connect a web application running on a browser to the gRPC server. We will look at the problems, and the solutions we have, particularly, the gRPC-Web .Net Microsoft have come out … Continue reading gRPC-Web : Using gRPC over browser application
Tag: gRPC
Process Stream data from gRPC Server using Flutter/Dart
In the earlier post, we addressed how to create a simple Grpc server in C# and consume it using a client developed using Flutter/Dart. We will now take the next step and address how to create expose a streaming remote method in the server and consume the same in the client. Streaming method in Server (C#) … Continue reading Process Stream data from gRPC Server using Flutter/Dart
Create a Flutter gRPC client
In this post, we will address how to create a gRPC client in Flutter and connect to a Server. In order to test our client application, we will quickly build a gRPC service using .Net. gRPC Server (C# .Net) Let us use the Asp.Net core gRPC Service template provided by Visual Studio. With the basic … Continue reading Create a Flutter gRPC client