Skip to content
Advertisement

Grpc.Core.RpcException method is unimplemented with C# client and Java Server

I am having trouble finding the source of this error. I implemented a simple service using protobuf:

JavaScript

When using a java client everything works fine, the server receives the request and responds appropriately. When using C# with the same .proto file for generating sources at the client.Login() I get the following errror: Grpc.Core.RpcException Status(StatusCode=Unimplemented, Detail=”Method tourism.RemoteService/Login is unimplemented”). The server receives the request but does not have time to respond and throws:

JavaScript

Java server:

JavaScript

C# Client:

JavaScript

Advertisement

Answer

I managed to find the source of the problem. For anyone else having this problem:

Make sure your .proto file is identical for both client and server and it has the same package. When the client calls a method on the remote server, it uses the full name of the remote class and the package.

However this was not the reason why the method appeared as unimplemented to the client. It was this:

JavaScript

Calling the super method login sends an async UNIMPLEMENTED error code back to the client. This is the login() method in the generated class:

JavaScript

So make sure in the implementation of your service methods you don’t call the super method as it will appear to the client as UNIMPLEMENTED. If you generate @Override methods using IntelliJ IDEA it will add the super method call. Make sure to delete it.

User contributions licensed under: CC BY-SA
8 People found this is helpful
Advertisement