grpc-dotnet icon indicating copy to clipboard operation
grpc-dotnet copied to clipboard

gRPC for .NET

Results 162 grpc-dotnet issues
Sort by recently updated
recently updated
newest added

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...

enhancement

### 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...

lang/C#
priority/P2
kind/enhancement
disposition/requires reporter action

### 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 /...

bug
docs

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)...

blocked
investigate

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...

enhancement

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...

help wanted
question

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...

question

@JamesNK how to write integration tests with minimal APIs?

question
docs
needs-author-feedback

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...

investigate

It would be great to have packages with helpers for tests, so as not to copy examples from tests

enhancement