Re: [grpc-io] gRPC hostname

2020-06-02 Thread Wesley Peng
XCompiler wrote:     server.Listen(IPAddress.Loopback, 5001, listenOptions => You have server listened on lookback interface, please change it to a regular IP address. regards. -- You received this message because you are subscribed to the Google Groups "grpc.io"

[grpc-io] gRPC hostname

2020-06-02 Thread XCompiler
Hi, I need help. I was trying to add certificate to grpc service and to remove the default localhost when you access the service. gRpc service is written in c#, and i was trying to use this type of cert *.bml.com see code below webBuilder.ConfigureKestrel(server => {

[grpc-io] NEED Immediately .NET System Architect in my client at Sacramento, CA.

2020-06-02 Thread zam reed
Hello Associates, Any available local consultants for .*NET System Architect*. I have an excellent project with my client at *Sacramento, CA* Kindly share suitable profiles at z...@mirthconsulting.net Job Title :.*NET System Architect*. Location : *Sacramento,

Re: [grpc-io] How to sever TCP connection server-side? (grpc-java)

2020-06-02 Thread 'Jihun Cho' via grpc.io
A lot of things are going on here. TCP connection is channel level if you want to teardown the connection, you need to close the channel. shutdown and shutdownNow does not teardown the connection immediately, did you wait until termination? You may consider using