Hi,
I get this example, and run both client and server my local machine when the client run this line:
using (var call = client.GetAll(new Messages.GetAllRequest()))
{
var responseStream = call.ResponseStream;
while (await responseStream.MoveNext())
{
Console.WriteLine(responseStream.Current.Location);
}
}
i get the following exception:
Grpc.Core.RpcException: 'Status(StatusCode=Unavailable, Detail="Connect Failed")'
how i can solve this?