Re: IgniteCheckedException: Requesting mapping from grid failed for [platformId=0, typeId=-1220482121]

2021-05-04 Thread Pavel Tupitsyn
Hi William, This scenario is supported, but requires a bit of extra care: 1. Class names should match on Java and C# sides, including namespace/package Alternatively, enable simple name mapper on both sides so that namespace/package part is ignored 2. Classes should be registered in Ignite.

Re: IgniteCheckedException: Requesting mapping from grid failed for [platformId=0, typeId=-1220482121]

2021-05-04 Thread Ilya Kasnacheev
Hello! Can you please share some simple reproducer project which highlights the issue? You can put it on github or similar. Did you enable simple name mapper, btw? The error is what you can expect when type names on Java and C# side do not match. Regards, -- Ilya Kasnacheev вт, 4 мая 2021 г.

IgniteCheckedException: Requesting mapping from grid failed for [platformId=0, typeId=-1220482121]

2021-05-03 Thread William.L
Hi, I used C# code (entity object class) to create and write to cache. And I am trying to use Java code to read (corresponding object class) from cache but running into IgniteCheckedException: Is this scenario supported? Here's the C# entity class: Here's the corresponding Java class: I a