Category "proto"

How to import shared proto file into local one?

I have project Protobuf.Shared which contains shared proto files. This project is packed into NuGet package. Project structure: - .nuspec - proto - shared.prot

How can I add compiler warnings in CMake that exclude Protobuf files?

I'm adding warnings (and treating them as errors) to my C++ project which uses CMake for builds. Initially I used target_compile_options. But as I've added more

Send REST request containing an enum (defined in RPC)

we have a delete-rpc request defined in a proto as rpc DeleteTag(DeleteTagRequest) returns (DeleteTagResponse) { option (google.api.http).delete = "/v2/tags";

Save Proto Timestamp as a string instead of object in Typescript

I currently have a birthday field in my proto definition defined as google.protobuf.Timestamp birthday = 1; When data is saved in the database its saved as an

how to make grpc proto "timestamp" change to Date input format?

I want to make timestamp to convert to Date but I was expecting to input Date format ,"NOT" seconds and nano. How do change it to date format input? @GrpcSer

How to convert grpc java proto "timestamp" to date?

Error in request.getProductexpirationdate() since its not "Date" in proto thats specified as "timestamp". Entity class has a "Date" but proto has no "Date" only

Can the .proto file be generated from the server by any client?

I have seen that Evans CLI can be used to determine the exposed messages and sessions on the server from the client setup. Is it possible that the .proto file b

How to curl a POST endpoint with a protobuf payload

I have a POST endpoint in my Java service that expects a protobuf 3 payload. This service is used by other services which send the protobuf payload. I would lik