[grpc-io] Re: gRPC in user Defined Function in mysql

2022-09-29 Thread 'sanjay...@google.com' via grpc.io
Have you tried it and what specific issues are you running into that you need help with? On Friday, September 23, 2022 at 5:27:37 AM UTC-7 Leila Fathi wrote: > I want to create a UDF in myql which when it is triggers, a query should > be sent to a gRPC server, My question is that how could I

[grpc-io] Re: C# gNMI code to connect network device securely

2022-09-29 Thread 'sanjay...@google.com' via grpc.io
This group is for gRPC questions. What's gNMI? On Wednesday, September 7, 2022 at 10:56:33 AM UTC-7 neeraj...@gmail.com wrote: > Hi Group, > > Please help to share c# sample gNMI code to connect network device using > secure connection ( SSL certificate). > > Thanks, > Neeraj > -- You

[grpc-io] Re: How to add a ClientStreamTracer to a managed channel ?

2022-09-29 Thread 'sanjay...@google.com' via grpc.io
The ClientStreamTracer is per stream so cannot be added to a managed channel. You have to use a ClientStreamTracer.Factory that returns a new ClientStreamTracer and using a client-interceptor inject the factory into a call using callOptions.withStreamTracerFactory. On Thursday, September 29,

[grpc-io] How to add a ClientStreamTracer to a managed channel ?

2022-09-29 Thread Paul Antinori
I am trying to see how the ClientStreamTracer is add to a manager channel, with the ManagedChannelBuilder API, but am missing it. Can someone give a pointer on how this can be done ? -- You received this message because you are subscribed to the Google Groups "grpc.io" group. To unsubscribe

Re: [grpc-io] gRPC endpoint with non-root path

2022-09-29 Thread 'sanjay...@google.com' via grpc.io
> But the client has no means of specifying it and the server has no means of distinguishing two implementations of the same interface definition You can distinguish using one of (package.ServiceName) and that's available both on the client on server side. There are other ways as well e.g. use