Skip to main content

All Questions

Tagged with
0 votes
0 answers
43 views

gRPC - How to add custom encryption in Python?

Promblem Formulation Hello there, I am new to gRPC. Recently I am trying to write a python client, which emulates gRPC connection with a remote server which has custom encryption and compression on it'...
imakak's user avatar
  • 328
0 votes
1 answer
484 views

gRPC client request streaming: - "The client reset the request stream."

I am trying to implement request streaming from my python client to my C# server using gRPC. This is my protofile: syntax = "proto3"; service PerceiveAPIDataService { ...
Luuk Wuijster's user avatar
2 votes
0 answers
1k views

Implementing a grpc client in C# .Net Framework that connects to a Python 3 grpc server?

I am trying to write a grpc client in C# .Net Framework (4.7.x) that's supposed to connect to a Python (3.7) grpc server running on a RaspberryPi. To ensure that my proto file is correct and that the ...
NiklasAtHouseOfTest's user avatar
0 votes
0 answers
1k views

Calling gRPC Server from Python Client

I have to create a Python Flask Service which loads an image from an URL and sends it to a C# GRPC Service. Both services have to run in Docker later. For now, I just want to run them on localhost. ...
Maximilian_von_Bomhard's user avatar