Hello, This issue seems to be raised as you didn't specify binary configuration for your C# type. Since you create your entity via sqlline (actually it doesn't matter where do you create it), Ignite knows nothing about C# type mapping to Java type: /Caused by: java.lang.ClassNotFoundException: Requesting mapping from grid failed for [platformId=1, typeId=1173251103] /
Please follow the links for docs and samples to find out how to make it work correctly: 1. https://apacheignite-net.readme.io/docs/platform-interoperability Refer to simple name mapper (which ignores namespace) can be used to avoid this problem. It should be configured both on .NET and Java sides, allow it inside your xml configuration or the one that you prefer. 2. https://ptupitsyn.github.io/Ignite-Multi-Platform-Cluster Initially written for 1.7, 2.0+ version could be found on github: https://github.com/ptupitsyn/ignite-multi-platform-demo/tree/ignite-2.0 Regards, Anton -- Sent from: http://apache-ignite-users.70518.x6.nabble.com/
