-
All of the examples I've been able to find show the client consuming services from a root address. When I tried consuming from a subfolder, the client strips the relative path and just uses the base U…
-
I've created a fresh VueJS application with TypeScript functionality.
When I generate using:
```
protoc -I=. service.proto --js_out=import_style=typescript:. --grpc web_out=import_style=typescri…
-
Ref: https://dev.tdex.network/docs/specs/transport-protocol
ideally clients should call the Transport service and use the one more suited for the environment. The ENUM number states the priority
…
tiero updated
2 years ago
-
Since M1 chip becomes more and more popular, it would be great if we can download prebuilt binaries for ARM in GitHub Releases.
-
related #1271
#1278 breaks the package name includes dot.
```
$ tree
.
├── child
│ └── enum.proto
└── test.proto
1 directory, 2 files
```
test.proto
```proto
syntax = "proto3";…
-
Hello!
I am trying to create client for my python grpc server.
My server implements server-side streaming methods and unary calls.
As follows from library documentation, if I need streaming, i …
-
I am trying to generate codegen files for javascript using following command inside a docker image:-
`protoc -I=proto_dir ee.proto --js_out=import_style=commonjs:proto_gen_dir/js --grpc-web_out=impor…
-
Has 2 proto files:
enum.proto
```proto
syntax = "proto3";
enum DocEnum {
DOC_ENUM_PDF = 0;
DOC_ENUM_HTML = 1;
}
```
test.proto
```proto
syntax = "proto3";
import "enum.prot…
heggi updated
2 years ago
-
**What version of protobuf and what language are you using?**
Version: libprotoc 3.12.1
Language: Javascript
**What operating system (Linux, Windows, ...) and version?**
Ubuntu 18.04
…
-
Minimal protobuf example:
```
syntax = "proto3";
package filestream;
service FileService {
rpc FileUploadCommand(stream FileUploadCommandRequest)
returns (FileUploadCommandResponse) …