[grpc-io] Re: Is it availble to do RPC requests from server to client with gRPC?

2018-11-01 Thread Ivan Penchev
The only way to do this is, for the client first to contact the server. Then on the server you get an IServerStreamWriter, which gives you an option to steam to the client . The reason you can do it the other way is, that the server must know all the IP addresses to connect to :) On

[grpc-io] [gRPC C#] Populate AuthContext on server, based on JWT Authentication

2018-10-24 Thread Ivan Penchev
Cross-post from Here Clients: Java(Android)/Swift(iOS) Use case: On client -- All chanels are SSL protected, and we have a DB that stores our "token", which we call and send on reqests