- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我在这条指令之后创建了一个 grpc 服务器和客户端:https://docs.microsoft.com/en-us/aspnet/core/tutorials/grpc/grpc-start?view=aspnetcore-3.0&tabs=visual-studio .
当我尝试从客户端调用服务时,客户端显示此错误消息:“发生了一个或多个错误。(Status(StatusCode=Unknown, Detail="No status received"))”
而服务器这个:
info: Microsoft.AspNetCore.Hosting.Diagnostics[1]
Request starting HTTP/2 POST http://STEINI-PC/LocationService/GetLocations application/grpc
info: Microsoft.AspNetCore.Routing.EndpointMiddleware[0]
Executing endpoint 'gRPC - gRPC - Unimplemented service'
info: Grpc.AspNetCore.Server.Internal.ServerCallHandlerFactory[1]
Service 'LocationService' is unimplemented.
info: Microsoft.AspNetCore.Routing.EndpointMiddleware[1]
Executed endpoint 'gRPC - gRPC - Unimplemented service'
info: Microsoft.AspNetCore.Hosting.Diagnostics[2]
Request finished in 51.812000000000005ms 200 application/grpc
syntax = "proto3";
service EventService {
rpc GetEvents (Empty) returns (Events) {}
rpc GetEvent (Id) returns (Event) {}
rpc GetEventsByLocation (Id) returns (Events) {}
rpc AddEvent (Event) returns (Empty) {}
rpc UpdateEvent (Event) returns (Empty) {}
rpc DeleteEvent (Id) returns (Event) {}
}
service LocationService {
rpc GetLocations (Empty) returns (Locations) {}
rpc GetLocation (Id) returns (Location) {}
rpc AddLocation (Location) returns (Empty) {}
rpc UpdateLocation (Location) returns (Empty) {}
rpc DeleteLocation (Id) returns (Location) {}
}
service ParticipantService {
rpc GetParticipants (Empty) returns (Participants) {}
rpc GetParticipant (Id) returns (Participant) {}
rpc GetParticipantsFromEvent (Id) returns (Participants) {}
rpc AddParticipant (Participant) returns (Empty) {}
rpc UpdateParticipant (Participant) returns (Empty) {}
rpc DeleteParticipant (Id) returns (Participant) {}
}
message Empty {
}
message Id {
string id = 1;
}
message Events{
repeated Event events = 1;
}
message Locations{
repeated Location locations = 1;
}
message Participants{
repeated Participant participants = 1;
}
message Event {
Id eventid = 1;
string name = 2;
string description = 3;
Id locationID = 4;
string date = 5;
}
message Location {
Id locationID = 1;
string name = 2;
string adress = 3;
}
message Participant {
Id participantId = 1;
string name = 2;
Id eventId = 3;
}
public class Startup
{
// This method gets called by the runtime. Use this method to add services to the container.
// For more information on how to configure your application, visit https://go.microsoft.com/fwlink/?LinkID=398940
public void ConfigureServices(IServiceCollection services)
{
var connectionString = @"Data Source=STEINI-PC;Initial Catalog=thesisSteinmetz;Persist Security Info=True;User ID=SA;Password=SA123";
services.AddGrpc(options =>
{
options.EnableDetailedErrors = true;
});
services.AddDbContext<DataContext>(options => options.UseSqlServer(connectionString));
}
// 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 =>
{
// 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
endpoints.MapGrpcService<EventService>();
endpoints.MapGrpcService<LocationService>();
endpoints.MapGrpcService<ParticipantService>();
});
}
}
public class LocationService : LocationServiceBase
{
private readonly DataContext _context;
private readonly ILocationDataHandler _locationDataHandler;
//public LocationService()
//{
// var connectionString = @"Data Source=STEINI-PC;Initial Catalog=thesisSteinmetz;Persist Security Info=True;User ID=SA;Password=SA123";
// var contextOptions = new DbContextOptionsBuilder<DataContext>();
// contextOptions.UseSqlServer(connectionString);
// _context = new DataContext(contextOptions.Options);
// _locationDataHandler = new EFCoreLocationDataHandler(_context);
//}
public LocationService(DataContext context)
{
_context = context;
_locationDataHandler = new EFCoreLocationDataHandler(_context);
}
public override async Task<Empty> AddLocation(Location request, ServerCallContext context)
{
await _locationDataHandler.AddAsync(LocationConverter.LocationFromGRPC(request));
return new Empty();
}
public override async Task<Location> DeleteLocation(Id request, ServerCallContext context)
{
try
{
CommonLibrary.Models.Location location = await GetLocation(request);
await _locationDataHandler.DeleteAsync(location.LocationId);
return LocationConverter.LocationToGRPC(location);
}
catch (Exception ex)
{
throw new RpcException(new Status(StatusCode.NotFound, ex.Message));
}
}
public override async Task<Location> GetLocation(Id request, ServerCallContext context)
{
try
{
return LocationConverter.LocationToGRPC(await GetLocation(request));
}
catch (Exception ex)
{
throw new RpcException(new Status(StatusCode.NotFound, ex.Message));
}
}
public override async Task<Locations> GetLocations(Empty request, ServerCallContext context)
{
return LocationConverter.LocationsToGrpc(await _locationDataHandler.GetAsync());
}
public override async Task<Empty> UpdateLocation(Location request, ServerCallContext context)
{
try
{
await _locationDataHandler.UpdateAsync(LocationConverter.LocationFromGRPC(request));
}
catch (Exception ex)
{
throw new RpcException(new Status(StatusCode.NotFound, ex.Message));
}
return new Empty();
}
private async Task<CommonLibrary.Models.Location> GetLocation(Id request)
{
var location = await _locationDataHandler.GetAsync(IdConverter.IdToGuid(request));
if (location == null)
{
throw new Exception($"Location with id: {location.LocationId.ToString()} Not Found");
}
return location;
}
}
最佳答案
我找到了问题所在。
我的问题是我手动编辑的生成文件的不同命名空间。
关于c# - grpc 服务器显示 "unimplemented service error",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56794993/
关于 gRPC Health Checking ,如果 gRPC 服务托管在与其他也需要健康检查的 HTTP 服务相同的端口上,则对 grpc.health.v1.Health.Check 的响应应该
我的项目是读取服务器中的图像,进行一些处理,然后将整个图像传递给客户端。客户端占用图像并进行更多处理,并将一些输出值返回给服务器。服务器和客户端之间使用的图像大小为 [640x480x3]。 以下是我
gRPC 基于 HTTP/2,它(假设)被浏览器广泛支持。因此,我觉得从浏览器使用 gRPC 应该没有问题。 但是,很明显存在问题。协议(protocol),grpc web , 是不同的,因为“由于
关于服务器端代码的幂等性的问题,或者说它的必要性。对于一般的 gRPC,或者专门针对 java 实现。 当我们从客户端发送消息一次时,是否有可能由我们的服务实现处理两次?也许这与服务似乎不可用时的重试
假设我想使用 Grpc Server 流式传输或双向流式传输。 考虑到它在底层使用 http/2,流可以持续多长时间是否有任何限制? 如果是的话,它可以用来代替消息总线,这样流就可以打开并存活多久?
使用 gRPC 向客户端发送有关错误的更多详细信息的模式是什么? 例如,假设我有一个用于注册用户的表单,用于发送消息 message RegisterUser { string email = 1
我是 GRPC 的新手。我想知道当 GRPC 客户端启动一个请求时,服务器是否启动一个新线程来处理。 最佳答案 最多可能有一个 Runnable加入 Server's executor用于申请处理。每
我想传输一个 int64 数组。 我查了一下如何使用它。在我的原型(prototype)文件中,我需要一个流: service myService { rpc GetValues(myRequ
通常,客户端可以通过以下方式取消 gRPC 调用: (requestObserver as ClientCallStreamObserver) .cancel("Cancelled", nul
在 100Gb 网络上,我创建了一个服务器来监听 4 个端口,grpc 客户端可以达到 3GB+/s 的吞吐量。然而,当服务器监听一个端口时,grpc 客户端达到了 1GB/s 的吞吐量,即使我设置了
我想验证调用并可能在服务器拦截器中回答错误。有没有办法做到这一点?如果是,我该如何实现? 最佳答案 简单地从拦截器响应 RPC,可能通过调用 close() ,不要调用next .您仍然需要返回一个监
我有一个 GRPC API,经过重构,一些包被重命名。这包括我们定义 API 的原型(prototype)文件之一中的 package 声明。像这样的: package foo; service Ba
我想在 Ubuntu 上使用源代码中的所有子模块编译 grpc,并将其安装到/usr/local 以外的指定位置 为提供的 Makefile 指定此位置的方法是什么(类似于配置脚本的 --prefix
我不断在控制台中收到此警告: DeprecationWarning: grpc.load: Use the @grpc/proto-loader module with grpc.loadPackag
上下文 我正在尝试使用 Google 的 Cloud Natural Language API。我有我的服务帐户 key JSON 文件,并且正在尝试编写一个简单的 .NET Core 应用程序(更具
用户在测试中遇到了此崩溃。我的第一个猜测是这与内存有关,但除此之外我没有什么可做的。更深入地研究代码,我认为这可能是主线程问题,但看起来监听器在后台线程上被删除,所以我怀疑这就是原因。 我认为在应用程
我正在编写一个 grpc 服务并在 Kubernetes (https://github.com/grpc-ecosystem/grpc-health-probe) 上使用 gRPC 健康检查。在我的
如何使用 gRPC-java 实现检测网络错误并尝试从中恢复的策略?我知道 UNAVAILABLE 状态可能意味着网络错误,但这并没有告诉我它是哪种网络错误 - 并且 UNAVAILABLE 也可以从
假设我们有一个 Search-Service service Search { rpc Search (SearchRequest) returns (SearchReply) {} } mess
如果浏览器支持http/2,为什么 grpc-web 需要 envoy 代理? 不支持 http/2 的旧浏览器是否只需要它? 最佳答案 回答于 https://github.com/grpc/grp
我是一名优秀的程序员,十分优秀!