grpc-dotnet
grpc-dotnet copied to clipboard
gRPC for .NET
For plain JS clients we can use this tool to debug and analyze gRPC-Web right in Chrome: https://chrome.google.com/webstore/detail/grpc-web-developer-tools/ddamlpimmiapbcopeoifjfmoabdbfbjj?hl=en https://github.com/SafetyCulture/grpc-web-devtools Are there any plans to have a similar tool for gRPC-Web...
### What version of gRPC and what language are you using? dotnet core ### What operating system (Linux, Windows,...) and version? Windows ### What runtime / compiler are you using...
### What version of gRPC and what language are you using? Language: F# gRPC Version: 2.45.0 ### What operating system (Linux, Windows,...) and version? Fedora 35 ### What runtime /...
This is about #167 and https://docs.microsoft.com/en-us/aspnet/core/grpc/httpapi?view=aspnetcore-5.0 Given the following proto ``` syntax = "proto3"; option csharp_namespace = "user_management"; import "google/api/annotations.proto"; service UserListService { //List users rpc ListUsers (ListUserRequest) returns (UserList)...
Currently there's a discrepancy in GrpcChannel (grpc-dotnet) and Channel (Grpc.Core) behavior when it comes to shutdown. - Both classes inherit from ChannelBase, but only Channel provides a meaningful implementation of...
I have a service that is not behaving as it should. While troubleshooting it, I noticed this debug output: Endpoint 'gRPC - Unimplemented service' with route pattern '{unimplementedService}/{unimplementedMethod}' is valid...
Hello, I am migrating server from Grpc.Core to Grpc.AspNetCore.Server. In Grpc.Core I was using: ``` Grpc.Core.Server server = new Grpc.Core.Server() { Services = { _instanceOfMyServiceImplementation.GetServiceDefinition() }, Ports = { new...
@JamesNK how to write integration tests with minimal APIs?
Hi, I'm using ASP.NET Core on .NET 6 framework. The client factory is configured in the DIC and the address is passed by the IOptionMonitor. When the configuration is updated...
It would be great to have packages with helpers for tests, so as not to copy examples from tests