Re: [grpc-io] gRPC - server client communication

2018-02-28 Thread itisbsg
Not sure if this is still a question... i had a similar requirement and here's how a solution that am planning to use.. https://github.com/itisbsg/grpc-push-notif On Friday, July 29, 2016 at 10:02:49 AM UTC-7, Mosca, Federico wrote: > > What is not so clear is if after the client call stub.messa

[grpc-io] Re: Access to Unix Domain Socket Peer Credentials in Go

2018-02-28 Thread Dave Quigley
Hi Doug, Thank you for the info. This is exactly what I needed. I wasn't sure if this was possible without having to modify the core grpc go code but I'm glad to see I don't need to do that. The example for pulling the peercreds is exactly the one I found and was using in my tests. I'll look in

[grpc-io] Re: gRFC L25: Make GrpcBuffer{Reader|Writer} Public

2018-02-28 Thread 'Christopher Warrington - MSFT' via grpc.io
Looking at the implementation, this inherits from ::grpc::protobuf::io::ZeroCopyOutputStream, which implies a dependency on protobuf. Is that the case? * If so, should this be called, say, GrpcProtoBufferReader instead? * If this isn't used by the client of gRPC, can building and linking

[grpc-io] Re: Access to Unix Domain Socket Peer Credentials in Go

2018-02-28 Thread 'Doug Fawley' via grpc.io
Hi Dave, Great question! You should be able to get exactly what you want by doing the following: 1. Create a TransportCredentials with a ServerHandshake function that gets the information you need from the net.Conn*

[grpc-io] grpc java mutual auth BAD certificate

2018-02-28 Thread cr22rc
Hi Seeing this error though it seems the all the certificates do check out ok. grpc java version 1.10.0 javax.net.ssl.SSLHandshakeException : error:1412:SSL routines:OPENSSL_internal:SSLV3_ALERT_BAD_CERTIFICATE Server side auth only works just f

Re: [grpc-io] grpc go authority different than other languages implementation

2018-02-28 Thread 'Doug Fawley' via grpc.io
Hi Iman, There is some discussion about this where it was implemented; see the PR, starting from here: https://github.com/grpc/grpc-go/pull/1064#issuecomment-278445486 Thanks, Doug On Fri, Feb 23, 2018 at 7:46 AM wrote: > In order to set HTTP2 authority in go grpc with a secure connection, t

Re: [grpc-io] Re: OpenCensus vs. OpenTracing

2018-02-28 Thread Benjamin Krämer
Thanks for the information. I think once OpenCensus is officially in GRPC c-core, the C# users (and other c-core implementations) can just rely on that implementation using OpenCensus C++ in the background. Am Dienstag, 27. Februar 2018 23:36:15 UTC-8 schrieb Adrian Cole: > > I don't think many

[grpc-io] gRFC L25: Make GrpcBuffer{Reader|Writer} Public

2018-02-28 Thread ncteisen via grpc.io
Created a new gRFC, feel free to drop comments here or on the PR itself. gRFC: https://github.com/grpc/proposal/pull/61 implementation: https://github.com/grpc/grpc/pull/14541 -- You received this message because you are subscribed to the Google Groups "grpc.io" group. To unsubscribe from this

Re: [grpc-io] C# grpc context

2018-02-28 Thread 'Jan Tattermusch' via grpc.io
Currently we don't have anything like explicitly setup in C#, but as you pointed out, .NET framework already provides some classes for contextual data (such as AsyncLocal). One thing you can try: In v1.10.x we are introducing interceptor API, and with that API you should be able to install async co