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

Get data from gRPC cliient

Open MahdiyarTH opened this issue 3 years ago • 1 comments

The context

I have a GPS device that is using protobuf.

As i know, for sending data to a server using protobuf, must be at least a service specified in .proto files, and implement that service to get data. But in the documentation and .proto files in that document (file1, file2) does not mention any service

The question

How can i get data from this device, using Java, Spring boot when there is no service in .proto files?

MahdiyarTH avatar Jul 09 '22 11:07 MahdiyarTH

Have you checked that it actually uses gRPC as service implementation? Protobuf is just the data definition and serialization format, but it can also be used without grpc.

ST-DDT avatar Jul 09 '22 23:07 ST-DDT