[grpc-io] gRPC calls failing while calling from a Node service to a Java service

2023-11-27 Thread 'Ranita Bhattacharya' via grpc.io
Hi , I am hoping to get some help for the issue I am having while doing gRPC call from a node js service to a Java Springboot service. The server side is already up and running with other Java services. While the client (node js) side setup is new. Below is the .proto file for the client :

[grpc-io] Will gRPC support Huawei HarmonyOS???

2023-11-27 Thread 刘宇宙
Will gRPC support Huawei HarmonyOS??? -- You received this message because you are subscribed to the Google Groups "grpc.io" group. To unsubscribe from this group and stop receiving emails from it, send an email to grpc-io+unsubscr...@googlegroups.com. To view this discussion on the web visit

[grpc-io] Grpc Java server test for ServerInterceptors

2023-11-27 Thread John Wilson
Hi Grpc team! I have a ServerInterceptor instance for my grpc server, it does something like this: @Override public ServerCall.Listener interceptCall( ServerCall call, Metadata headers, ServerCallHandler next) { Context context = Context.current(); // more

[grpc-io] Grpc Java server test for ServerInterceptors

2023-11-27 Thread John Wilson
Hi Grpc team! I have a ServerInterceptor instance for my grpc server, it does something like this: @Override public ServerCall.Listener interceptCall( ServerCall call, Metadata headers, ServerCallHandler next) { Context context = Context.current(); //

[grpc-io] Re: grpc++: Run-Time Check Failure #2 - Stack around the variable 'true_factory' was corrupted

2023-11-27 Thread Gerd
Hi, for me it looks abseil library of grpc 1.57.0 does not work together with VS 2017 (v141). It compiles but I get a runtime error. When I use grpc 1.35.0 instead it works. So, for me the question is, which maximum grpc version can I use together with VS 2017 (v141)? On Monday, November 20,

[grpc-io] c-ares and CVE-2022-4904 in gRPC C# v1.46.x

2023-11-27 Thread John Wilson
Hi gRPC Team! I see the C# version in maintenance mode (v1.46.x) uses version 1.17.2, which is impacted by CVE-2022-4904 (fixed in version 1.19). Are there plans to upgrade the version included in gRPC? Or is it not impacted by the c-ares vulnerability? - sebas -- You received this message

[grpc-io] c-ares and CVE-2022-4904 in gRPC C# v1.46.x

2023-11-27 Thread John Wilson
Hi gRPC Team! I see the C# version in maintenance mode (v1.46.x) uses version 1.17.2, which is impacted by CVE-2022-4904 (fixed in version 1.19). Are there plans to upgrade the version included in gRPC? Or is it not impacted by the c-ares vulnerability? - sebas -- You received this message

Re: [grpc-io] Switching from direct executor to threaded executor after rate limiting

2023-11-27 Thread Krishna Sai Veera Reddy
Hey Eric, Thank you and appreciate your response! It does seem it's not worth it to go through with switching executors this way as we do need to deserialize the request anyway to be able to apply rate limiting. On Wednesday, November 22, 2023 at 1:18:33 PM UTC-8 Eric Anderson wrote: > On

[grpc-io] Re: c-ares and CVE-2022-4904 in gRPC C# v1.46.x

2023-11-27 Thread 'veb...@google.com' via grpc.io
>From https://github.com/c-ares/c-ares/issues/496, it looks like ares_set_sortlist used to have a security issue but gRPC Core which gRPC C# is using doesn't call this function. Thus, gRPC is not affected by this issue. On Wednesday, November 22, 2023 at 9:56:48 AM UTC-8 Sebas Mendez wrote: >