Hi, I am using ipojo 1.8.6.
I had written a handler and registered a field in the configure method. When the field was accessed, the onGet method of my handler is called, but the pojo parameter was empty (null). After invesigating the source code of ipojo, I found this: InstanceManager.java: line 1114: Object handlerResult = list[i].onGet(null, fieldName, initialValue); Why is null passed and not the pojo object? How can I get the actual pojo object of the field? Thanks ----------------- http://www.codessentials.com - Your essential software, for free! Follow us at http://twitter.com/#!/Codessentials

