GPRC server/client test.
See original GitHub issueHi
I was following tutorials on microsoft documentation pages, everything worked except making the call itself, the error states :
Grpc.Core.RpcException: 'Status(StatusCode=Cancelled, Detail="Bad gRPC response. Expected HTTP status code 200. Got status code: 426")'
I guess this has something to do with the HTTP2.0 protocol ? I have created a repository with my example code at : https://github.com/christophedemey/gprc
Any help is greatly appreciated. Kind regards Christophe.
Issue Analytics
- State:
- Created 4 years ago
- Comments:9 (5 by maintainers)
Top Results From Across the Web
Test gRPC services with Postman or gRPCurl in ASP.NET ...
Enter the gRPC server's hostname and port in the server URL. For example, localhost:5000 . Don't include the http or https scheme in...
Read more >go - Testing a gRPC service
Case #2: I want to manually test the API of my live service over the wire · Start your gRPC server · Use...
Read more >Testing gRPC APIs with Postman
Testing gRPC APIs ensures that they consistently deliver the necessary functionality, performance, reliability, and security.
Read more >How to Test gRPC Servers in Go
We will use the bufconn package to start the gRPC server so that tests are interacting with actual network behaviors. ... We will...
Read more >Quick comparison of gRPC testing tools
What tools are there for gRPC? · Postman · Insomnia · Kreya.app · BloomRPC ...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Or do you have a proxy running on your computer?
Hi @JamesNK
The server output
The client
The code used https://github.com/christophedemey/gprc
Thanks