【发布时间】:2020-10-26 09:48:25
【问题描述】:
当我使用 WCF 的 NETTCP 绑定端点地址时看起来像:net.tcp://localhost:51111/MyService/。
当我使用 Websockets 时,端点地址如下:ws://localhost:port/Esv/ocp 和安全连接wss://localhost:port/Esv/ocp。
gRPC 服务有什么通用前缀吗?或者只有192.168.1.1:51111 可以,因为被调用的方法是通过以下方式绑定到 GRPC 服务器的:
ServerServiceDefinition.CreateBuilder().AddMethod(_myCommunicationMethodName, CallProcessingMehtod).Build();
【问题讨论】:
标签: grpc