gpt4 book ai didi

c# - gRPC 相当于 WCF 服务发现

转载 作者:行者123 更新时间:2023-12-02 17:10:33 26 4
gpt4 key购买 nike

编辑:我不想使用 Consul 或 ZooKeeper。我想查找本地网络上 Web 服务的地址。

WCF 中服务发现类的 gRPC 等效项是什么,例如:本示例中使用的 ServiceDiscoveryBehaviorUdpDiscoveryEndpoint 以及 DiscoveryClient:

服务:

using (ServiceHost serviceHost = new ServiceHost(typeof(CalculatorService), baseAddress))
{
// Add calculator endpoint
serviceHost.AddServiceEndpoint(typeof(ICalculator), new WSHttpBinding(), string.Empty);

// ** DISCOVERY ** //
// Make the service discoverable by adding the discovery behavior
ServiceDiscoveryBehavior discoveryBehavior = new ServiceDiscoveryBehavior();
serviceHost.Description.Behaviors.Add(discoveryBehavior);

// Send announcements on UDP multicast transport
discoveryBehavior.AnnouncementEndpoints.Add(new UdpAnnouncementEndpoint());

// ** DISCOVERY ** //
// Add the discovery endpoint that specifies where to publish the services
serviceHost.Description.Endpoints.Add(new UdpDiscoveryEndpoint());

// Open the ServiceHost to create listeners and start listening for messages.
serviceHost.Open();
}

客户:

{
DiscoveryClient discoveryClient = new DiscoveryClient(new UdpDiscoveryEndpoint());

Collection<EndpointDiscoveryMetadata> calculatorServices =
(Collection<EndpointDiscoveryMetadata>)
discoveryClient.Find(new FindCriteria(typeof(ICalculator))).Endpoints;

discoveryClient.Close();

CalculatorClient client = new CalculatorClient();
client.Endpoint.Address = calculatorServices[0].Address;
}

最佳答案

gRPC 没有与 ServiceDiscoveryBehaviorUdpDiscoveryEndpointDiscoveryClient 等效的类。

您必须使用 System.Net.Sockets 来使用 UDP 广播编写自己的网络发现。

服务:

IPAddress ipAddress = Dns.GetHostEntry(Dns.GetHostName()).AddressList.
FirstOrDefault(ip => ip.AddressFamily == AddressFamily.InterNetwork);

Server grpcServer = new Server
{
Services = { Simulator.BindService(new Service()) },
Ports = { new ServerPort(ipAddress.ToString(), 8080, ServerCredentials.Insecure) }
};
grpcServer.Start();

Task.Run(() =>
{
while (true)
{
UdpClient udpServer = new UdpClient(8888);
IPEndPoint clientEndPoint = new IPEndPoint(IPAddress.Any, 0);
byte[] clientRequestData = udpServer.Receive(ref clientEndPoint);
string clientRequest = Encoding.ASCII.GetString(clientRequestData);
Console.WriteLine($"Recived {clientRequest} from {clientEndPoint.Address}");

byte[] responseData = Encoding.ASCII.GetBytes("Response");
udpServer.Send(responseData, responseData.Length, clientEndPoint);
udpServer.Close();
}
});

客户:

UdpClient udpClient = new UdpClient { EnableBroadcast = true };
byte[] requestData = Encoding.ASCII.GetBytes("Request");
udpClient.Send(requestData, requestData.Length, new IPEndPoint(IPAddress.Broadcast, 8888));

IPEndPoint serverEndPoint = new IPEndPoint(IPAddress.Any, 0);
byte[] serverResponseData = udpClient.Receive(ref serverEndPoint);
string serverResponse = Encoding.ASCII.GetString(serverResponseData);
Console.WriteLine($"Recived {serverResponse} from {serverEndPoint.Address}");

IPAddress ipAddress = serverEndPoint.Address;
udpClient.Close();

var grpcChannel = new Channel(ipAddress.ToString(), 8080, ChannelCredentials.Insecure);
var grpcClient = new Client(grpcChannel);

关于c# - gRPC 相当于 WCF 服务发现,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59398556/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com