Hi,
I'm very newbie in gRPC and i had implemented a server client structure 
wich work perfecty on the same machine but return the error in object when 
i try to move client service on another machine.

My service is a consolle application write in c# .net5.0 with nuget pack of 
my proto project if i try to call my server with BloomRPC in the same 
machine i get the response but if i try by another pc with BloomRPC don't 
work.

this is the istance of server:

//Code

    const int Port = 30051;
      Server server = new Server
      {
        Services = { v0449gRpcSvc.BindService(new v0449gRpcSvcImpl()) },
        Ports = { new ServerPort("localhost", Port, 
ServerCredentials.Insecure) }
      };
      server.Start();

//EndCode

thanks for reply!!!

-- 
You received this message because you are subscribed to the Google Groups 
"grpc.io" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to grpc-io+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/grpc-io/2742ab35-2c0c-43ac-8a25-ae1e482238cen%40googlegroups.com.

Reply via email to