grpc-web Questions

6

Trying to compile my protos - I need to compile them to use in my react app. But I get this error. I run the command as follows: cd src/main/proto && protoc -I=. *.proto --js_out=import_sty...
Rembrandt asked 10/6, 2022 at 9:29

2

So I have a gRPC server written in Rust using the Tonic crate. I have all the proto files written and I can make requests using a Tonic based client and grpcurl so there are no issues on the server...
Stibine asked 8/7, 2022 at 6:52

3

gRPC is based on HTTP/2, which (assumption) is widely supported by browsers. Therefore, I feel there should be no problem with gRPC from a browser. However, it is clear that there is a problem. Th...
Cleave asked 6/9, 2018 at 21:35

1

Im trying to test my grpc client connection using below code. I have .net core grpc server and using node js grpc client to connect. But getting "failed to connect to all addresses" error...
Invalidate asked 30/9, 2020 at 13:41

0

I have a GRPC file-upload server(C#) running and I also have GRPC-client through which I was uploading files to the GRPC server but now I want to upload my file using postman(yes the new postman ve...
Marilee asked 29/9, 2022 at 18:28

4

Summarize the problem I'm learning how to use gRPC, and wanted to try to do a client-server connection. The server (in Elixir) works, though I had a few problems. But as I am mainly a back end dev...
Marketing asked 5/10, 2019 at 10:56

2

Solved

I'm developing a Vue.js web application and I'm using gRPC to assure the communication. In the frontend, I'm using the web version of gRPC: grpc-web. Everything is working just fine; however, when ...
Gine asked 28/8, 2020 at 13:56

2

I have a react-redux app and my team uses grpc-web. I'm wondering - what's the best way to design such system? For now the plan is to create 3 abstraction levels: API module - promisified wrappe...
Peck asked 5/1, 2020 at 19:4

1

State of Servies: Client (nuxt) is up on http://localhost:3000 and the client sends requests to http://localhost:8080. Server (django) is running on 0.0.0.0:50051. Also docker is up 78496fef5...
Reiche asked 19/12, 2021 at 7:48

2

Solved

I am using grpc-web to communicate with a java backend over gRPC. I am using ReactJS on the frontend which uses grpc-web to interpret the protobuffers. I am getting this strange error. My protos ar...
Quadrivium asked 14/10, 2021 at 12:53

1

Im having issues with setting up GRPC inside Angular Universal App. Basically, it throws an error: ERROR Error: This environment's XHR implementation cannot support binary transfer. This error is ...
Fipple asked 15/9, 2021 at 11:50

5

Solved

I have worked with grpc .net client and a grpc server created with java, how can i implement grpc web client on angular 6 with typescript? Also how can i create proto files and it's typing's for ty...
Palaeozoology asked 15/8, 2018 at 10:42

2

I had Asp.net core and gRPC working on the browser...but now I get: info: Grpc.AspNetCore.Server.ServerCallHandler[2] Request content-type of 'application/grpc-web' is not supported. Any ideas on...
Greyhen asked 4/12, 2020 at 2:7

1

1.the protocol buffer 3 file test.proto option go_package = ".;apps"; package apps; message ShardKvMap{ map<string, google.protobuf.Any> data = 1; } 2.i use grpc-web build .ts fi...
Smoulder asked 12/7, 2020 at 8:0

2

I am playing with grpc & grpc-web. I was able to run a simple grpc server and grpc-web applications. However I feel like the setup requires too many dependencies web-server, grpc-server and env...
Apelles asked 17/6, 2020 at 4:12

1

.NET Core gRPC-Web client calling ASP.NET Core gRPC-Web server on http://localhost:5000 works fine. Same client code calling server deployed to an IIS server with a virtual application (e.g., &quot...
Cubic asked 28/7, 2020 at 18:43

1

In python/C#/C/Go/... generated code it is possible to create a proto message instance from JSON. E.g. in Python where you can just do google.protobuf.json_format.Parse(json, message). I would expe...
Ballocks asked 6/7, 2020 at 19:24

2

Solved

I am trying use grpc-web client in my vue application as follows: import Vue from "vue"; import App from "./App.vue"; const { Registration, _ } = require("./identity-service_pb.js"); const { Ide...
Tertias asked 3/3, 2020 at 21:8

2

Need to use NGINX without docker I have tried using gRPC-web integration using the envoy proxy that had docker dependencies and so I moved to NGINX, how to use NGINX without docker dependencies?
Goebbels asked 30/1, 2019 at 12:9

0

We are using Improbable's gRPC-Web library to expose a gRPC service (implemented in Go) to a Javascript client running in-browser. This service will sit alongside an existing front-end Go service w...
Phobe asked 26/2, 2019 at 10:56

1

Solved

If the browser supports http/2, why does grpc-web require envoy proxy? Is it just required for older browsers that do not support http/2?
Bobsledding asked 29/10, 2018 at 18:25

1

Solved

I could successfully run a gRPC client and gRPC server in c++ now I wish to establish a communication between node A and gRPC server i.e. node B as in the attached image. Are there any examples w...
Radiator asked 16/4, 2018 at 8:28
1

© 2022 - 2024 — McMap. All rights reserved.