In ColdFusion 9 I am serializing an ORM Entity. When doing this tho it's missing relational entities.

serializeJSON() method ColdFusion uses to convert complex objects into JSON notation. It doesn’t seem to work correctly on ORM objects. any object that had a property that was an array of other objects is not returned when using SerializeJSON on ORM objects!

Has anyone tackled this sort of issue before? How did you handle it?

Thanks.

Update.

Issue resolved! This is not a bug you have to set remotingFetch to true! By default it is set to false for properties with one-to-one, one-to-many, many-to-one, or many-to-many relationships. I am no using Flash remoting but it seems you have to do this AJAX calls too.

link|improve this question

I believe this may be happening because you have lazy="true" on your relationship. I would try either changing that attribute to false, or calling getAccount() on the object before serializing. Let me know if that works and I'll post it as the answer. – Dan Short Sep 26 '11 at 17:05
Hi Dan, I don't have any issue with getAccount() the problem is with serializing ORM entities. I need to find a way to iterate through all the properties of the entity and build a structure. This is the only way I can see how to resolve this. – Spark Sep 27 '11 at 8:39
also this is a collection not just one entity – Spark Sep 27 '11 at 9:00
feedback

1 Answer

up vote 1 down vote accepted

Issue resolved! This is not a bug you have to set remotingFetch to true! By default it is set to false for properties with one-to-one, one-to-many, many-to-one, or many-to-many relationships.

link|improve this answer
Cool. Make sure you mark this as the accepted answer :) – Dan Short Sep 27 '11 at 12:27
will do thanks Dan – Spark Sep 27 '11 at 14:28
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.