Category "grpc"

grpc can't find protobuf library

I went over the grpc installation and finished building and installation. Now when I try to: find_package(gRPC CONFIG REQUIRED) I get CMake Error at CMakeLi

How to set google.protobuf.Timestamp to null?

How to represent a null timestamp in Google ProtoBuf? I am reading DateTime's from a postgreSQL database--some of which are null--into protobuf TimeStamps. mess

gRPC with C# - "2 UNKNOWN: Stream remove"

I have created very simple gRPC server. It's a template project from Microsoft. csproj <Project Sdk="Microsoft.NET.Sdk.Web"> <PropertyGroup&

What are the differences between gRPC AsyncIO and RabbitMQ and when to use them?

I want to implement event-driven communication in my microservices architecture. For example, if event A happens, services X and Y would carry out certain thing

GRPC: Client ID or connection information?

Is there a way to get the connection information on RPC calls from server side? Or maybe something like unique client ID?

grpc.WithInsecure is deprecated: use insecure.NewCredentials() instead

Hey I'm trying make a small test client with Go and Grpc, opts := grpc.WithInsecure() cc, err := grpc.Dial("localhost:9950", opts) if err != nil {

GRPC installed successfully on ubuntu but php is looking for it in another folder

Using PHP 7.4 & Ubuntu 20.04 LTS I have installed GRPC using these steps: sudo apt-get install autoconf zlib1g-dev php-dev php-pear sudo pecl install grpc

On Apple M1, grpc/Google-Api Import Error:

Situation: I'm trying to set up my SQLAlchemy database and run it locally. I use the google api for its vision module, so I can analyze text off of pictures. Cu

How to broadcast in gRPC from server to client?

I'm creating a small chat application in gRPC right now and I've run into the issue where if a user wants to connect to the gRPC server as a client, I'd like to

Upload image to java rest api from .net http client

I am student and on a assignment i was trying to send image from my blazor page to java rest api . As for the api it works perfectly as i tried it with postman

How to import protobuf well-known types in AspNet Core gRPC Service

I', scratching my head about how to import "google/protobuf/empty.proto" to my proto file. What I'm doing so far: In my .csproj file, I added the following: &

Can I define a grpc call with a null request or response?

Does the rpc syntax in proto3 allow null requests or responses? e.g. I want the equivalent of the following: rpc Logout; rpc Status returns (Status); rpc Log (L

gRPC server blocked on SendMsg

We're having an issue where our gRPC streaming server is blocked on SendMsg with the following stack trace: google.golang.org/grpc/internal/transport.(*writeQuo

Calling grpc server from multi-threaded client

I have a client side code, which is multi-threaded, calling updateInfo rpc method to the grpc server to update the information(Eventually will updata data in SQ

Where to set the path to the protoc to import standards Protocol Buffers

Where need I to set the path to the protoc to get import standards Protocol Buffers (protobuf), like empty.proto and timestamp.proto in Windows and Dart? When

Use google cloud aiplatform with golang

I have a vertex AI modele deployed on an endpoint and want to do some prediction from my app in golang. To do this I create code inspired by this exemple : http

Using gRPC and/or GraphQL for microservice architecture

At my company we're about to set up a new microservice architecture, but we're still trying to decide which protocol would be best for our use case. In our case

Issue with Unmarshalling GRPC Response To Generic Type

I am trying to use generics to convert a JSON object into a GRPC response that has an enum, i.e.: type GRPCResponse { str string enu EnumType } type En

Converting Protobuf3 with enum to JSON in Go

How can I convert grpc/protobuf3 message to JSON where the enum is represented as string? For example, the protobuf message: enum Level { WARNING = 0;

How can I host a Asp.NET Core gRPC Service on IIS

I need to host my Asp.NET Core gRPC Service on IIS so that I can make it publicly available for others in my team so can you please provide a proper document or