我正在尝试使用C#中的客户端和Python中的服务器运行Helloworld示例。
当我手动启动服务器然后启动客户端时,客户端可以成功连接到服务器并调用SayHello
方法。
现在,我已经配置了我的IDE(Visual Studio)来同时启动客户端和服务器。客户端失败并抛出RpcException
:
An unhandled exception of type 'Grpc.Core.RpcException' occurred in mscorlib.dll
Additional information: Status(StatusCode=Unavailable, Detail="Connect Failed")
在这一行:
var reply = client.SayHello(new HelloRequest { Name = user });
是否有一种好方法可以等待建立连接?
using System;
using Grpc.Core;
using Helloworld;
namespace CSharpClient
{
class Program
{
public static void Main(string[] args)
{
Channel channel = new Channel("127.0.0.1:50051", ChannelCredentials.Insecure);
var client = new Greeter.GreeterClient(channel);
String user = "you";
var reply = client.SayHello(new HelloRequest { Name = user });
Console.WriteLine("Greeting: " + reply.Message);
channel.ShutdownAsync().Wait();
Console.WriteLine("Press any key to exit...");
Console.ReadKey();
}
}
}
答案 0 :(得分:6)
您可以使用CallOptions中的“WaitForReady”选项(默认情况下已关闭)等待服务器可用。使用
var reply = client.SayHello(new HelloRequest { Name = user }, new CallOptions().WithWaitForReady(true));
会产生预期的效果。