molc
molc

Reputation: 41

Using Protobuf Client from Java Example

We're trying to interface with our ServiceStack REST Server from a linux Java integration, using Protobuf to increase the speed of transmission.

We have found the JsonServiceClient implementation in Java, but can't find a Protobuf equivalent or examples of others doing this.

Questions 1. Is there one? 2. If not, is there any examples of how to use Protobuf from a Java client? 3. Is there possibly any libraries already that allow for this?

Upvotes: 1

Views: 139

Answers (1)

mythz
mythz

Reputation: 143374

ServiceStack only provides the Java JsonServiceClient library, i.e. there is no ProtoBuf ServiceClient for Java.

Upvotes: 1

Related Questions