Retrieving an EO from a serialized Propertylist in database table textfield

2010-02-24 Thread Johan Henselmans
I am trying to get a NSarray of NSDictionaries with Objects from one application to another application via a database text field. My idea was that I would first serialize the stuff on one side: setPlistTextField ( NSPropertyListSerialization.stringFromPropertyList( cart() ) ) next, get it

Re: Retrieving an EO from a serialized Propertylist in database table textfield

2010-02-24 Thread Andrew Lindesay
Hello Johan; You really need to serialise a GID and then deserialise the GID and fault it on the target system. NSKeyGlobalID and NSTemporaryGlobalID both conform to NSCoding so I guess that you could use that to achieve what you are after? You could also use something like my JSON