This isn’t exactly an Oxygene question, but here goes.
We have an application for Desktop written in Delphi that we’ve hired guys to convert to an iPad app. I’ve written a REST service in Oxygene that returns a structure that contains a array of bytes in JSON format that are the bytes of a PNG image.
In my test SL app, I can call that service, convert the json character string to bytes and get the PNG displayed. It actually works really well.
So now the iPad guys have to consume that. They are already asking me if I can change what I’m doing. But I suspect they don’t know much.
So can’t the iPad app read the stream of bytes from the REST service and put that PNG into a UIImage or something? Do they just not know what they are doing?
Or will I have to make some different interface in the REST service to accommodate them?