Has anyone created a customer serializer/deserializer and gotten it to work?
I used the samples/encoding as a template, but changed the public field members in Data.java to private, but this causes a NoSuchFieldException during deserialization because the Class.getFields method is used when registerTargetValue is called on the deserializer. getFields() doesn't work for private field members of a class. Does anybody have a suggestion on creating a custom serializer to handle private field members?