Hello,
i noticed that the ColdFusion adapter for remoting (which comes with the 7.02 update) does not encode properties of Value Objects that are super classes. The problem lies in the coldfusion.flash.messaging.io.amf.Translator.CFASSerializer
class. This is the class that converts a ColdFusion object to a java object before its encoded in AMF.
This line causes the problem:
Object props[] = (Object[])CFCMetaData.get("PROPERTIES");
for(int i = 0; i < props.length; i++)
It does not cause a problem directly, the problem is that it forgets super classes that it might have. This means properties defined on superclasses are not encoded to AMF and will never reach your application.
Greetz Erik
__._,_.___
--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com
SPONSORED LINKS
| Software development tool | Software development | Software development services |
| Home design software | Software development company |
Your email settings: Individual Email|Traditional
Change settings via the Web (Yahoo! ID required)
Change settings via email: Switch delivery to Daily Digest | Switch to Fully Featured
Visit Your Group | Yahoo! Groups Terms of Use | Unsubscribe
Change settings via the Web (Yahoo! ID required)
Change settings via email: Switch delivery to Daily Digest | Switch to Fully Featured
Visit Your Group | Yahoo! Groups Terms of Use | Unsubscribe
__,_._,___

