Hi,
I have a java web server (google app engine to be precise) and which works with an iPhone app written in objective C. I'd like to transfer data from the server to the client - specifically I'd like to serialize my plain old java objects to an objective c plist string so that it can be easily parsed by the client iphone. Are there any libraries that do this so that I don't have to write this serialization by hand?
As a bonus - is there a way in objective c to read this plist string and have it parsed correctly so that it deserializes into an objective c object?