- 参考资料,和详细背景不做赘述。
- 首先定义prop 文件
syntax ="proto3";
package RouteGrpc;
service HelloWorld{
rpc SayHello(HellowRequest)returns (ReturnsString){}
}
message HellowRequest{
string Title=;
string Content=;
} message ReturnsString{
string Content=;
} - 然后根据prop文件生成对应的客户端和服务端的代码(这里要提前准备protoc.exe和grpc_csharp_plugin.exe)
tools\protoc.exe -I protos --csharp_out out HelloGrpc.proto --plugin=protoc-gen-grpc=tools\grpc_csharp_plugin.exe
//-I 工作目录
// --grpc_out 第一个参数是表示输出文件目录 第二个参数表示 描述文件名称(protobuf文件)
// --csharp_out 和grpc_out 参数相同
//--plugin= 表示输出c#的插件
tools\protoc.exe -I protos --grpc_out outgrpc HelloGrpc.proto --plugin=protoc-gen-grpc=tools\grpc_csharp_plugin.exe //服务相关 - 生成之后服务端实现Sayhellow相关方法
public class HelloService:HelloWorld.HelloWorldBase
{
public override Task<ReturnsString> SayHello(HellowRequest request, ServerCallContext context)
{
return Task.FromResult(new ReturnsString { Content = "Hello " + request.Title +"端口9007"});
}
} - 最终客户端和服务端代码(一共有四种RPC 这里只实现最简单的那种其它类似)
namespace Service
{
class Program
{
const int Port = ; static void Main(string[] args)
{
Server server = new Server
{
Services = { HelloWorld.BindService(new HelloService()) },
Ports = { new ServerPort("localhost", Port, ServerCredentials.Insecure) }
};
server.Start();
Console.WriteLine("RouteGuide server listening on port " + Port);
Console.WriteLine("Press any key to stop the server...");
Console.ReadKey();
server.ShutdownAsync().Wait();
}
}
}namespace Client
{
class Program
{
static void Main(string[] args)
{
Channel channel = new Channel("127.0.0.1:9007", ChannelCredentials.Insecure);
var client = new HelloWorld.HelloWorldClient(channel);
var retrunstr = client.SayHello(new HellowRequest() { Title = "this is message", Content = "this is content" });
//var retrunstr = await client.SayHelloAsync(new HellowRequest() { Title = "this is message", Content = "this is content" });
Console.WriteLine("来自" + retrunstr.Content);
channel.ShutdownAsync().Wait();
Console.WriteLine("任意键退出...");
Console.ReadKey();
}
}
} - 项目结构
相关文章
- netcore 实现一个简单的Grpc 服务端和客户端
- 一个PHP写的简单webservice服务端+客户端
- 用socket写一个简单的客户端和服务端程序
- Java中利用socket实现简单的服务端与客户端的通信(中级)——实现任意双向通信
- 一个实现了ViewPart和EditroPart的简单RCP例子
- java中自己实现一个服务端对应多个客户端的简单代码
- C语言Linix服务器网络爬虫项目(二)项目设计和通过一个http请求抓取网页的简单实现
- Socket编程服务端和客户端互相通信,实现简单的聊天
- java在线聊天项目0.9版 实现把服务端接收到的信息返回给每一个客户端窗口中显示功能之客户端接收
- 用.netcore写一个简单redis驱动,调试windows版本的redis.平且给set和get命令添加参数.