[grpc-io] Re: Connect to a Go GRPC Server running with TLS enabled using node js grpc client

2022-12-15 Thread 'Zach Reyes' via grpc.io
Can you please file an issue in the gRPC-Go repository if you need help: https://github.com/grpc/grpc-go/issues. Thanks! On Tuesday, December 13, 2022 at 1:48:30 PM UTC-5 vikasg...@gmail.com wrote: > Hi , > Could you please help - How did you resolve the issue? > > On Wednesday, 15 March 2017

[grpc-io] Re: Connect to a Go GRPC Server running with TLS enabled using node js grpc client

2022-12-13 Thread Vikas Garg
Hi , Could you please help - How did you resolve the issue? On Wednesday, 15 March 2017 at 17:08:56 UTC+5:30 ugues...@gmail.com wrote: > Thanks Guys for Replying. The Issue has been Resolved. > > > On Friday, March 10, 2017 at 10:06:00 AM UTC+5:30, Aakarshit Naga Sai > Batchu wrote: >> >> We

[grpc-io] Re: Connect to a Go GRPC Server running with TLS enabled using node js grpc client

2017-03-15 Thread Aakarshit Naga Sai Batchu
Thanks Guys for Replying. The Issue has been Resolved. On Friday, March 10, 2017 at 10:06:00 AM UTC+5:30, Aakarshit Naga Sai Batchu wrote: > > We are running a go-grpc server with TLS enabled. > When we use the go-grpc-client it works perfectly fine with the Server. > But when we try node js and

Re: [grpc-io] Re: Connect to a Go GRPC Server running with TLS enabled using node js grpc client

2017-03-14 Thread 'Michael Lumish' via grpc.io
One possibility is that the client is not set up to use SSL. Can you show the code you use to initialize the clients? On Tue, Mar 14, 2017 at 5:03 PM 'Menghan Li' via grpc.io < grpc-io@googlegroups.com> wrote: > gRPC server expects http2.ClientPreface( >

[grpc-io] Re: Connect to a Go GRPC Server running with TLS enabled using node js grpc client

2017-03-14 Thread 'Menghan Li' via grpc.io
gRPC server expects http2.ClientPreface(https://godoc.org/golang.org/x/net/http2#pkg-constants). >From the server side log, I can only tell that it didn't get the ClientPreface. The client logs doesn't tell anything more than the connection failed. I'm not sure what the reason is. Can you