Re: How do I register a class for a use by the BinaryMarshaller

2017-12-12 Thread vkulichenko
John, This should be done via BinaryConfiguration: https://apacheignite.readme.io/docs/binary-marshaller#configuring-binary-objects Javadoc is incorrect, I will file a ticket to fix it. -Val -- Sent from: http://apache-ignite-users.70518.x6.nabble.com/

Re: How do I register a class for a use by the BinaryMarshaller

2017-12-12 Thread John Wilson
This doesn't work but I'm looking for an equivalent of this, which is described here: https://ignite.apache.org/releases/latest/javadoc/org/apache/ignite/IgniteBinary.html org.apache.ignite.examples.client.binary.Employee On Tue,

How do I register a class for a use by the BinaryMarshaller

2017-12-12 Thread John Wilson
Hi, How do I register a class, in the XML config file, to be used by the Binary Marshaller? Assume I have IgniteCache, I want the xml config equivalent for: binaryMarsh.context().descriptorForClass(Point.class, false) Thanks,