// This method gets called by the runtime. Use this method to configure the HTTP request pipeline. public void Configure(IApplicationBuilder app, IWebHostEnvironment env) { if (env.IsDevelopment()) { app.UseDeveloperExceptionPage(); } app.UseRouting(); app.UseAuthorization(); app.UseEndpoints(endpoints => { endpoints.MapGet("/", async context => { OrderGrpcClient service = context.RequestServices.GetService <OrderGrpcClient>(); try { var r = service.CreateOrder(new CreateOrderCommand { BuyerId = "abc" }); } catch (Exception ex) { } await context.Response.WriteAsync("Hello World!"); }); }); }
// This method gets called by the runtime. Use this method to configure the HTTP request pipeline. public void Configure(IApplicationBuilder app, IWebHostEnvironment env) { if (env.IsDevelopment()) { app.UseDeveloperExceptionPage(); } app.UseRouting(); app.UseEndpoints(endpoints => { endpoints.MapGet("/", async context => { // 2. 获取grpc客户端服务,并调用接口 OrderGrpcClient service = context.RequestServices.GetService <OrderGrpcClient>(); try { var r = service.CreateOrder(new CreateOrderCommand { BuyerId = "abc" }); } catch (Exception ex) { } await context.Response.WriteAsync("Communication with gRPC endpoints must be made through a gRPC client. To learn how to create a client, visit: https://go.microsoft.com/fwlink/?linkid=2086909"); }); }); }