Currently the JSONEntityState throws JSONException if there is a null value in some collection property. It seems that the problem is in org.qi4j.runtime.types.CollectionType . Replacing line 108 from

Object value = array.get( i );

to

Object value = array.opt( i );

fixed the problem.


_______________________________________________
qi4j-dev mailing list
[email protected]
http://lists.ops4j.org/mailman/listinfo/qi4j-dev

Reply via email to